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

DeleteRecord() public méthode

Remove a DNS Record from a domain. Makes a DELETE request to the Domain DNS Records Instance resource.
public DeleteRecord ( int id, int record_id ) : dynamic
id int The ID of the domain
record_id int The ID of DNS Record to remove from the domain
Résultat dynamic
        public dynamic DeleteRecord(int id, int record_id)
        {
            Require.Argument("id", id);
            Require.Argument("record_id", record_id);

            return DeleteRecord(id.ToString(), record_id);
        }

Same methods

DNSimpleRestClient::DeleteRecord ( string domain, int record_id ) : dynamic