Amazon.SQS.AmazonSQSClient.ICoreAmazonSQS C# (CSharp) Method

ICoreAmazonSQS() private method

private ICoreAmazonSQS ( string queueUrl ) : string>.Dictionary
queueUrl string
return string>.Dictionary
        Dictionary<string, string> ICoreAmazonSQS.GetAttributes(string queueUrl)
        {
            var getAttributeResponse = this.GetQueueAttributes(new GetQueueAttributesRequest()
            {
                AttributeNames = new List<string>() { "All" },
                QueueUrl = queueUrl
            });

            return getAttributeResponse.Attributes;
        }

Same methods

AmazonSQSClient::ICoreAmazonSQS ( string queueUrl, string>.Dictionary attributes ) : System.Threading.Tasks.Task
AmazonSQSClient::ICoreAmazonSQS ( string queueUrl ) : string>>.Task
AmazonSQSClient::ICoreAmazonSQS ( string queueUrl, string>.Dictionary attributes ) : void
AmazonSQSClient