CloudFileShare.SnapshotAsync 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.
Overloads
SnapshotAsync() |
Initiates an asynchronous operation to create a snapshot of the share. |
SnapshotAsync(CancellationToken) |
Initiates an asynchronous operation to create a snapshot of the share. |
SnapshotAsync(IDictionary<String,String>, AccessCondition, FileRequestOptions, OperationContext) |
Initiates an asynchronous operation to create a snapshot of the share. |
SnapshotAsync(IDictionary<String,String>, AccessCondition, FileRequestOptions, OperationContext, CancellationToken) |
Initiates an asynchronous operation to create a snapshot of the share. |
SnapshotAsync()
Initiates an asynchronous operation to create a snapshot of the share.
[Microsoft.Azure.Storage.DoesServiceRequest]
public System.Threading.Tasks.Task<Microsoft.Azure.Storage.File.CloudFileShare> SnapshotAsync ();
[<Microsoft.Azure.Storage.DoesServiceRequest>]
member this.SnapshotAsync : unit -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.File.CloudFileShare>
Public Function SnapshotAsync () As Task(Of CloudFileShare)
Returns
A Task<TResult> object of type CloudFileShare that represents the asynchronous operation.
- Attributes
Applies to
SnapshotAsync(CancellationToken)
Initiates an asynchronous operation to create a snapshot of the share.
[Microsoft.Azure.Storage.DoesServiceRequest]
public System.Threading.Tasks.Task<Microsoft.Azure.Storage.File.CloudFileShare> SnapshotAsync (System.Threading.CancellationToken cancellationToken);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
member this.SnapshotAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.File.CloudFileShare>
Public Function SnapshotAsync (cancellationToken As CancellationToken) As Task(Of CloudFileShare)
Parameters
- cancellationToken
- CancellationToken
A CancellationToken to observe while waiting for a task to complete.
Returns
A Task<TResult> object of type CloudFileShare that represents the asynchronous operation.
- Attributes
Applies to
SnapshotAsync(IDictionary<String,String>, AccessCondition, FileRequestOptions, OperationContext)
Initiates an asynchronous operation to create a snapshot of the share.
[Microsoft.Azure.Storage.DoesServiceRequest]
public System.Threading.Tasks.Task<Microsoft.Azure.Storage.File.CloudFileShare> SnapshotAsync (System.Collections.Generic.IDictionary<string,string> metadata, Microsoft.Azure.Storage.AccessCondition accessCondition, Microsoft.Azure.Storage.File.FileRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
member this.SnapshotAsync : System.Collections.Generic.IDictionary<string, string> * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.File.FileRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.File.CloudFileShare>
Public Function SnapshotAsync (metadata As IDictionary(Of String, String), accessCondition As AccessCondition, options As FileRequestOptions, operationContext As OperationContext) As Task(Of CloudFileShare)
Parameters
- metadata
- IDictionary<String,String>
A collection of name-value pairs defining the metadata of the snapshot.
- accessCondition
- AccessCondition
An AccessCondition object that represents the condition that must be met in order for the request to proceed. If null
, no condition is used.
- options
- FileRequestOptions
A FileRequestOptions object that specifies additional options for the request.
- operationContext
- OperationContext
An OperationContext object that represents the context for the current operation.
Returns
A Task<TResult> object of type CloudFileShare that represents the asynchronous operation.
- Attributes
Applies to
SnapshotAsync(IDictionary<String,String>, AccessCondition, FileRequestOptions, OperationContext, CancellationToken)
Initiates an asynchronous operation to create a snapshot of the share.
[Microsoft.Azure.Storage.DoesServiceRequest]
public System.Threading.Tasks.Task<Microsoft.Azure.Storage.File.CloudFileShare> SnapshotAsync (System.Collections.Generic.IDictionary<string,string> metadata, Microsoft.Azure.Storage.AccessCondition accessCondition, Microsoft.Azure.Storage.File.FileRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
member this.SnapshotAsync : System.Collections.Generic.IDictionary<string, string> * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.File.FileRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.File.CloudFileShare>
Public Function SnapshotAsync (metadata As IDictionary(Of String, String), accessCondition As AccessCondition, options As FileRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task(Of CloudFileShare)
Parameters
- metadata
- IDictionary<String,String>
A collection of name-value pairs defining the metadata of the snapshot.
- accessCondition
- AccessCondition
An AccessCondition object that represents the condition that must be met in order for the request to proceed. If null
, no condition is used.
- options
- FileRequestOptions
A FileRequestOptions object that specifies additional options for the request.
- operationContext
- OperationContext
An OperationContext object that represents the context for the current operation.
- cancellationToken
- CancellationToken
A CancellationToken to observe while waiting for a task to complete.
Returns
A Task<TResult> object of type CloudFileShare that represents the asynchronous operation.
- Attributes