DNSimple.DNSimpleRestClient.RemoveWhoisPrivacyProtection C# (CSharp) Méthode

RemoveWhoisPrivacyProtection() public méthode

Turn off WHOIS Privacy Protection. If the privacy protection has not expired it can always be turned back on with no additional charge. Makes a DELETE request a Domains WHOIS resource.
public RemoveWhoisPrivacyProtection ( string name ) : dynamic
name string The name of the domain.
Résultat dynamic
        public dynamic RemoveWhoisPrivacyProtection(string name)
        {
            Require.Argument("name", name);

            var request = new RestRequest(Method.DELETE)
            {
                Resource = "domains/{name}/whois_privacy"
            };
            request.AddUrlSegment("name", name);

            return Execute<dynamic>(request);
        }

Same methods

DNSimpleRestClient::RemoveWhoisPrivacyProtection ( int id ) : dynamic