Amazon.ECS.AmazonECSClient.BeginUpdateService C# (CSharp) Method

BeginUpdateService() public method

Initiates the asynchronous execution of the UpdateService operation.
public BeginUpdateService ( UpdateServiceRequest request, AsyncCallback callback, object state ) : IAsyncResult
request Amazon.ECS.Model.UpdateServiceRequest Container for the necessary parameters to execute the UpdateService operation on AmazonECSClient.
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 BeginUpdateService(UpdateServiceRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new UpdateServiceRequestMarshaller();
            var unmarshaller = UpdateServiceResponseUnmarshaller.Instance;

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