示例#1
0
 /// <summary>
 /// Detach and break the lease of the disk attached to the virtual machine.
 /// This operation can take a while to complete.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group.
 /// </param>
 /// <param name='labName'>
 /// The name of the lab.
 /// </param>
 /// <param name='userName'>
 /// The name of the user profile.
 /// </param>
 /// <param name='name'>
 /// The name of the disk.
 /// </param>
 /// <param name='detachDiskProperties'>
 /// Properties of the disk to detach.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task DetachAsync(this IDisksOperations operations, string resourceGroupName, string labName, string userName, string name, DetachDiskProperties detachDiskProperties, CancellationToken cancellationToken = default(CancellationToken))
 {
     (await operations.DetachWithHttpMessagesAsync(resourceGroupName, labName, userName, name, detachDiskProperties, null, cancellationToken).ConfigureAwait(false)).Dispose();
 }