Skip to content
Merged
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
16 changes: 8 additions & 8 deletions sdk/storage/Azure.Storage.Blobs/src/BlobContainerClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ protected BlobContainerClient()

/// <summary>
/// Initializes a new instance of the <see cref="BlobContainerClient"/>
/// class.
/// class with Connection string and Blob Container name.
/// </summary>
/// <param name="connectionString">
/// A connection string includes the authentication information
Expand All @@ -165,7 +165,7 @@ public BlobContainerClient(string connectionString, string blobContainerName)

/// <summary>
/// Initializes a new instance of the <see cref="BlobContainerClient"/>
/// class.
/// class with Connection string, Blob Container name, and <see cref="BlobClientOptions"/>.
/// </summary>
/// <param name="connectionString">
/// A connection string includes the authentication information
Expand Down Expand Up @@ -215,7 +215,7 @@ public BlobContainerClient(string connectionString, string blobContainerName, Bl

/// <summary>
/// Initializes a new instance of the <see cref="BlobContainerClient"/>
/// class.
/// class with Blob Container URI and <see cref="BlobClientOptions"/>.
/// </summary>
/// <param name="blobContainerUri">
/// A <see cref="Uri"/> referencing the blob container that includes the
Expand Down Expand Up @@ -255,7 +255,7 @@ public BlobContainerClient(Uri blobContainerUri, BlobClientOptions options = def

/// <summary>
/// Initializes a new instance of the <see cref="BlobContainerClient"/>
/// class.
/// class with Blob Container URI, <see cref="StorageSharedKeyCredential"/>, and <see cref="BlobClientOptions"/>.
/// </summary>
/// <param name="blobContainerUri">
/// A <see cref="Uri"/> referencing the blob container that includes the
Expand Down Expand Up @@ -297,7 +297,7 @@ public BlobContainerClient(Uri blobContainerUri, StorageSharedKeyCredential cred

/// <summary>
/// Initializes a new instance of the <see cref="BlobContainerClient"/>
/// class.
/// class with Blob Container URI, <see cref="AzureSasCredential"/>, and <see cref="BlobClientOptions"/>.
/// </summary>
/// <param name="blobContainerUri">
/// A <see cref="Uri"/> referencing the blob container that includes the
Expand Down Expand Up @@ -342,7 +342,7 @@ public BlobContainerClient(Uri blobContainerUri, AzureSasCredential credential,

/// <summary>
/// Initializes a new instance of the <see cref="BlobContainerClient"/>
/// class.
/// class with Blob Container URI, <see cref="TokenCredential"/>, and <see cref="BlobClientOptions"/>.
/// </summary>
/// <param name="blobContainerUri">
/// A <see cref="Uri"/> referencing the blob container that includes the
Expand Down Expand Up @@ -387,7 +387,7 @@ public BlobContainerClient(Uri blobContainerUri, TokenCredential credential, Blo

/// <summary>
/// Initializes a new instance of the <see cref="BlobContainerClient"/>
/// class.
/// class with Blob Container URI, <see cref="BlobClientConfiguration"/>, and <see cref="ClientSideEncryptionOptions"/>.
/// </summary>
/// <param name="containerUri">
/// A <see cref="Uri"/> referencing the blob container that includes the
Expand Down Expand Up @@ -417,7 +417,7 @@ internal BlobContainerClient(

/// <summary>
/// Initializes a new instance of the <see cref="BlobContainerClient"/>
/// class.
/// class with Blob Container URI, <see cref="BlobClientOptions"/>, and <see cref="HttpPipeline"/>.
/// </summary>
/// <param name="containerUri">
/// A <see cref="Uri"/> referencing the block blob that includes the
Expand Down