Amazon.Lambda.AmazonLambdaClient.GetFunctionAsync C# (CSharp) Метод

GetFunctionAsync() публичный Метод

Initiates the asynchronous execution of the GetFunction operation.
public GetFunctionAsync ( GetFunctionRequest request, System cancellationToken = default(CancellationToken) ) : Task
request Amazon.Lambda.Model.GetFunctionRequest Container for the necessary parameters to execute the GetFunction operation.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
Результат Task
        public Task<GetFunctionResponse> GetFunctionAsync(GetFunctionRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller = new GetFunctionRequestMarshaller();
            var unmarshaller = GetFunctionResponseUnmarshaller.Instance;

            return InvokeAsync<GetFunctionRequest,GetFunctionResponse>(request, marshaller, 
                unmarshaller, cancellationToken);
        }

Same methods

AmazonLambdaClient::GetFunctionAsync ( string functionName, System cancellationToken = default(CancellationToken) ) : Task
AmazonLambdaClient::GetFunctionAsync ( GetFunctionRequest request, GetFunctionResponse>.AmazonServiceCallback callback, AsyncOptions options = null ) : void
AmazonLambdaClient::GetFunctionAsync ( string functionName, GetFunctionResponse>.AmazonServiceCallback callback, AsyncOptions options = null ) : void
AmazonLambdaClient