Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ public EventProcessorClient(BlobContainerClient checkpointStore,
///
/// <remarks>
/// The container associated with the <paramref name="checkpointStore" /> is expected to exist; the <see cref="EventProcessorClient" />
/// does not assume the ability to manage the storage account and is safe to run without permission to manage the storage account.
/// does not assume the ability to manage the storage account and is safe to run with only read/write permission for blobs in the container.
/// </remarks>
///
public EventProcessorClient(BlobContainerClient checkpointStore,
Expand All @@ -445,7 +445,7 @@ public EventProcessorClient(BlobContainerClient checkpointStore,
///
/// <remarks>
/// The container associated with the <paramref name="checkpointStore" /> is expected to exist; the <see cref="EventProcessorClient" />
/// does not assume the ability to manage the storage account and is safe to run without permission to manage the storage account.
/// does not assume the ability to manage the storage account and is safe to run with only read/write permission for blobs in the container.
/// </remarks>
///
public EventProcessorClient(BlobContainerClient checkpointStore,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ internal static string BuildConnectionAudience(EventHubsTransportType transportT
/// <param name="eventHubName">The name of the Event Hub being connected to.</param>
/// <param name="transportType">The type of transport being used for the connection.</param>
///
/// <returns>The <see cref="SharedAccessSignatureCredential" /> which the <paramref name="credential" /> was translated into.</returns>
/// <returns>The <see cref="SharedAccessSignatureCredential" /> which the <paramref name="credential" /> was translated into, if the parameters were populated; otherwise, <c>null</c>.</returns>
///
internal static SharedAccessSignatureCredential TranslateSharedKeyCredential(EventHubsSharedAccessKeyCredential credential,
string fullyQualifiedNamespace,
Expand Down