Amazon.S3.AmazonS3Client.GetObjectMetadataAsync C# (CSharp) 메소드

GetObjectMetadataAsync() 공개 메소드

Initiates the asynchronous execution of the GetObjectMetadata operation.
public GetObjectMetadataAsync ( GetObjectMetadataRequest request, System cancellationToken = default(CancellationToken) ) : Task
request GetObjectMetadataRequest Container for the necessary parameters to execute the GetObjectMetadata operation.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
리턴 Task
        public Task<GetObjectMetadataResponse> GetObjectMetadataAsync(GetObjectMetadataRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller = new GetObjectMetadataRequestMarshaller();
            var unmarshaller = GetObjectMetadataResponseUnmarshaller.Instance;

            return InvokeAsync<GetObjectMetadataRequest,GetObjectMetadataResponse>(request, marshaller, 
                unmarshaller, cancellationToken);
        }

Same methods

AmazonS3Client::GetObjectMetadataAsync ( string bucketName, string key, System cancellationToken = default(CancellationToken) ) : Task
AmazonS3Client::GetObjectMetadataAsync ( string bucketName, string key, string versionId, System cancellationToken = default(CancellationToken) ) : Task
AmazonS3Client::GetObjectMetadataAsync ( GetObjectMetadataRequest request, GetObjectMetadataResponse>.AmazonServiceCallback callback, AsyncOptions options = null ) : void
AmazonS3Client::GetObjectMetadataAsync ( string bucketName, string key, GetObjectMetadataResponse>.AmazonServiceCallback callback, AsyncOptions options = null ) : void
AmazonS3Client::GetObjectMetadataAsync ( string bucketName, string key, string versionId, GetObjectMetadataResponse>.AmazonServiceCallback callback, AsyncOptions options = null ) : void
AmazonS3Client