BlobServiceClient.SetPropertiesAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The SetPropertiesAsync(BlobServiceProperties, CancellationToken) operation sets properties for a storage account’s Blob service endpoint, including properties for Storage Analytics, CORS (Cross-Origin Resource Sharing) rules and soft delete settings. You can also use this operation to set the default request version for all incoming requests to the Blob service that do not have a version specified.
For more information, see Set Blob Service Properties.
public virtual System.Threading.Tasks.Task<Azure.Response> SetPropertiesAsync (Azure.Storage.Blobs.Models.BlobServiceProperties properties, System.Threading.CancellationToken cancellationToken = default);
abstract member SetPropertiesAsync : Azure.Storage.Blobs.Models.BlobServiceProperties * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>
override this.SetPropertiesAsync : Azure.Storage.Blobs.Models.BlobServiceProperties * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>
Public Overridable Function SetPropertiesAsync (properties As BlobServiceProperties, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response)
Parameters
- properties
- BlobServiceProperties
The blob service properties.
- cancellationToken
- CancellationToken
Optional CancellationToken to propagate notifications that the operation should be cancelled.
Returns
A Response describing the service properties.
Remarks
A RequestFailedException will be thrown if a failure occurs.
Applies to
Azure SDK for .NET