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

EndOpenStream() public method

Finishes the asynchronous execution of the OpenStream operation.
public EndOpenStream ( IAsyncResult asyncResult ) : Stream
asyncResult IAsyncResult The IAsyncResult returned by the call to BeginOpenStream.
return Stream
        public Stream EndOpenStream(IAsyncResult asyncResult)
        {
            return this.s3ClientCache.GetClient(this.RegionAsEndpoint).EndGetObjectStream(asyncResult);
        }