Amazon.Route53Domains.AmazonRoute53DomainsClient.GetDomainSuggestions C# (CSharp) Метод

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

The GetDomainSuggestions operation returns a list of suggested domain names given a string, which can either be a domain name or simply a word or phrase (without spaces).

Parameters:

  • DomainName (string): The basis for your domain suggestion search, a string with (or without) top-level domain specified.
  • SuggestionCount (int): The number of domain suggestions to be returned, maximum 50, minimum 1.
  • OnlyAvailable (bool): If true, availability check will be performed on suggestion results, and only available domains will be returned. If false, suggestions will be returned without checking whether the domain is actually available, and caller will have to call checkDomainAvailability for each suggestion to determine availability for registration.

/// The requested item is not acceptable. For example, for an OperationId it may refer /// to the ID of an operation that is already completed. For a domain name, it may not /// be a valid domain name or belong to the requester account. /// /// Amazon Route 53 does not support this top-level domain. ///
public GetDomainSuggestions ( GetDomainSuggestionsRequest request ) : GetDomainSuggestionsResponse
request Amazon.Route53Domains.Model.GetDomainSuggestionsRequest Container for the necessary parameters to execute the GetDomainSuggestions service method.
Результат Amazon.Route53Domains.Model.GetDomainSuggestionsResponse
        public GetDomainSuggestionsResponse GetDomainSuggestions(GetDomainSuggestionsRequest request)
        {
            var marshaller = new GetDomainSuggestionsRequestMarshaller();
            var unmarshaller = GetDomainSuggestionsResponseUnmarshaller.Instance;

            return Invoke<GetDomainSuggestionsRequest,GetDomainSuggestionsResponse>(request, marshaller, unmarshaller);
        }
AmazonRoute53DomainsClient