Amazon.DynamoDBv2.DataModel.S3Link.BeginOpenStream C# (CSharp) Method

BeginOpenStream() public method

Initiates the asynchronous execution of the OpenStream operation.
public BeginOpenStream ( AsyncCallback callback, object state ) : IAsyncResult
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 BeginOpenStream(AsyncCallback callback, object state)
        {
            return this.s3ClientCache.GetClient(this.RegionAsEndpoint).BeginGetObjectStream(
                this.linker.s3.bucket, this.linker.s3.key, null, callback, state);
        }