Share via


KeyVaultClient.Do<T> Method (Func<Task<T>>)

 

Processes the asynchronous operation.

Namespace:   Microsoft.Azure.KeyVault
Assembly:  Microsoft.Azure.KeyVault (in Microsoft.Azure.KeyVault.dll)

Syntax

public Task<T> Do<T>(
    Func<Task<T>> func
)
public:
generic<typename T>
Task<T>^ Do(
    Func<Task<T>^>^ func
)
member Do<'T> : 
        func:Func<Task<'T>> -> Task<'T>
Public Function Do(Of T) (
    func As Func(Of Task(Of T))
) As Task(Of T)

Parameters

Return Value

Type: System.Threading.Tasks.Task<T>

The asynchronous operation.

Type Parameters

  • T
    The type.

See Also

KeyVaultClient Class
Microsoft.Azure.KeyVault Namespace

Return to top