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

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

Returns the SqlInjectionMatchSet that is specified by SqlInjectionMatchSetId.
/// 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 GetSqlInjectionMatchSetAsync ( string sqlInjectionMatchSetId, System cancellationToken = default(CancellationToken) ) : Task
sqlInjectionMatchSetId string The SqlInjectionMatchSetId of the SqlInjectionMatchSet that you want to get. SqlInjectionMatchSetId is returned by CreateSqlInjectionMatchSet and by ListSqlInjectionMatchSets.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
Результат Task
        public Task<GetSqlInjectionMatchSetResponse> GetSqlInjectionMatchSetAsync(string sqlInjectionMatchSetId, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var request = new GetSqlInjectionMatchSetRequest();
            request.SqlInjectionMatchSetId = sqlInjectionMatchSetId;
            return GetSqlInjectionMatchSetAsync(request, cancellationToken);
        }

Same methods

AmazonWAFRegionalClient::GetSqlInjectionMatchSetAsync ( GetSqlInjectionMatchSetRequest request, System cancellationToken = default(CancellationToken) ) : Task
AmazonWAFRegionalClient