Amazon.CognitoIdentity.AmazonCognitoIdentityClient.BeginUnlinkIdentity C# (CSharp) Method

BeginUnlinkIdentity() public method

Initiates the asynchronous execution of the UnlinkIdentity operation.
public BeginUnlinkIdentity ( UnlinkIdentityRequest request, AsyncCallback callback, object state ) : IAsyncResult
request Amazon.CognitoIdentity.Model.UnlinkIdentityRequest Container for the necessary parameters to execute the UnlinkIdentity operation on AmazonCognitoIdentityClient.
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 BeginUnlinkIdentity(UnlinkIdentityRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new UnlinkIdentityRequestMarshaller();
            var unmarshaller = UnlinkIdentityResponseUnmarshaller.Instance;

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