Amazon.Kinesis.AmazonKinesisClient.BeginCreateStream C# (CSharp) Method

BeginCreateStream() public method

Initiates the asynchronous execution of the CreateStream operation.
public BeginCreateStream ( CreateStreamRequest request, AsyncCallback callback, object state ) : IAsyncResult
request Amazon.Kinesis.Model.CreateStreamRequest Container for the necessary parameters to execute the CreateStream operation on AmazonKinesisClient.
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 BeginCreateStream(CreateStreamRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new CreateStreamRequestMarshaller();
            var unmarshaller = CreateStreamResponseUnmarshaller.Instance;

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