Amazon.WAFRegional.AmazonWAFRegionalClient.GetByteMatchSetAsync C# (CSharp) Метод

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

Returns the ByteMatchSet specified by ByteMatchSetId.
/// The operation failed because of a system problem, even though the request was valid. /// Retry your request. /// /// The operation failed because you tried to create, update, or delete an object by using /// an invalid account identifier. /// /// The operation failed because the referenced object doesn't exist. ///
public GetByteMatchSetAsync ( string byteMatchSetId, System cancellationToken = default(CancellationToken) ) : Task
byteMatchSetId string The ByteMatchSetId of the ByteMatchSet that you want to get. ByteMatchSetId is returned by CreateByteMatchSet and by ListByteMatchSets.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
Результат Task
        public Task<GetByteMatchSetResponse> GetByteMatchSetAsync(string byteMatchSetId, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var request = new GetByteMatchSetRequest();
            request.ByteMatchSetId = byteMatchSetId;
            return GetByteMatchSetAsync(request, cancellationToken);
        }

Same methods

AmazonWAFRegionalClient::GetByteMatchSetAsync ( GetByteMatchSetRequest request, System cancellationToken = default(CancellationToken) ) : Task
AmazonWAFRegionalClient