Amazon.S3.AmazonS3Client.GetCORSConfiguration C# (CSharp) Метод

GetCORSConfiguration() публичный Метод

Returns the cors configuration for the bucket.
public GetCORSConfiguration ( string bucketName ) : GetCORSConfigurationResponse
bucketName string A property of GetCORSConfigurationRequest used to execute the GetCORSConfiguration service method.
Результат GetCORSConfigurationResponse
        public GetCORSConfigurationResponse GetCORSConfiguration(string bucketName)
        {
            var request = new GetCORSConfigurationRequest();
            request.BucketName = bucketName;
            return GetCORSConfiguration(request);
        }

Same methods

AmazonS3Client::GetCORSConfiguration ( GetCORSConfigurationRequest request ) : GetCORSConfigurationResponse
AmazonS3Client