oISLOCAL
Cette fonction renvoie un boolean indiquant si le nom de domaine est géré par Namebay. Ceci permet de savoir si un transfert de revendeur doit être effectué à la place d’un transfert traditionnel.
Exemple :
commande
Namebay.Soap.Domain.Domain L_oDomain = new soap.namebay.com.Namebay.Soap.Domain.Domain();
// Authentification
L_oDomain.AuthenticationHeaderValue = new soap.namebay.com.Namebay.Soap.Domain.AuthenticationHeader();
L_oDomain.AuthenticationHeaderValue.sLogin = "YourLogin";
L_oDomain.AuthenticationHeaderValue.sPassword = "YourPassword";
bool isDomainManagedByNamebay;
Namebay.Soap.Domain.ApiResponse L_oApiResponse = L_oDomain.oIsLocal(“namebay.com”, out isDomainManagedByNamebay)