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

RemoveMember() public méthode

Remove a DNSimple customer from the membership list for a domain. Makes a DELETE request to the Domain Membership Instance resource.
The customer will no longer be able to manage the domain.
public RemoveMember ( int domainId, string email ) : dynamic
domainId int The ID of the domain for which to retrieve the members
email string The email for the user to add as a member to this domain
Résultat dynamic
        public dynamic RemoveMember(int domainId, string email)
        {
            return RemoveMember(domainId.ToString(), email);
        }

Same methods

DNSimpleRestClient::RemoveMember ( string domain, string email ) : dynamic