Amazon.CertificateManager.AmazonCertificateManagerClient.BeginRequestCertificate C# (CSharp) Method

BeginRequestCertificate() public method

Initiates the asynchronous execution of the RequestCertificate operation.
public BeginRequestCertificate ( RequestCertificateRequest request, AsyncCallback callback, object state ) : IAsyncResult
request Amazon.CertificateManager.Model.RequestCertificateRequest Container for the necessary parameters to execute the RequestCertificate operation on AmazonCertificateManagerClient.
callback AsyncCallback An AsyncCallback delegate that is invoked when the operation completes.
state object A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.
return IAsyncResult
        public IAsyncResult BeginRequestCertificate(RequestCertificateRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new RequestCertificateRequestMarshaller();
            var unmarshaller = RequestCertificateResponseUnmarshaller.Instance;

            return BeginInvoke<RequestCertificateRequest>(request, marshaller, unmarshaller,
                callback, state);
        }