Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AppendBlobClient"/>
 /// class.
 /// </summary>
 /// <param name="primaryUri">
 /// A <see cref="Uri"/> referencing the append blob that includes the
 /// name of the account, the name of the container, and the name of
 /// the blob.
 /// </param>
 /// <param name="connectionOptions">
 /// Optional connection options that define the transport pipeline
 /// policies for authentication, retries, etc., that are applied to
 /// every request.
 /// </param>
 public AppendBlobClient(Uri primaryUri, BlobConnectionOptions connectionOptions = default)
     : base(primaryUri, connectionOptions)
 {
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AppendBlobClient"/>
 /// class.
 /// </summary>
 /// <param name="connectionString">
 /// A connection string includes the authentication information
 /// required for your application to access data in an Azure Storage
 /// account at runtime.
 ///
 /// For more information, <see href="https://docs.microsoft.com/en-us/azure/storage/common/storage-configure-connection-string"/>.
 /// </param>
 /// <param name="containerName">
 /// The name of the container containing this append blob.
 /// </param>
 /// <param name="blobName">
 /// The name of this append blob.
 /// </param>
 /// <param name="connectionOptions">
 /// Optional connection options that define the transport pipeline
 /// policies for authentication, retries, etc., that are applied to
 /// every request.
 /// </param>
 /// <remarks>
 /// The credentials on <paramref name="connectionString"/> will override those on <paramref name="connectionOptions"/>.
 /// </remarks>
 public AppendBlobClient(string connectionString, string containerName, string blobName, BlobConnectionOptions connectionOptions = default)
     : base(connectionString, containerName, blobName, connectionOptions)
 {
 }