/// <remarks/> public void UpdateDomainOwnershipAsync(string sCLTRID, Credential credential, string sResourceID, string sLosingOwner, GainingOwner gaining) { this.UpdateDomainOwnershipAsync(sCLTRID, credential, sResourceID, sLosingOwner, gaining, null); }
/// <remarks/> public void UpdateDomainOwnershipAsync(string sCLTRID, Credential credential, string sResourceID, string sLosingOwner, GainingOwner gaining, object userState) { if ((this.UpdateDomainOwnershipOperationCompleted == null)) { this.UpdateDomainOwnershipOperationCompleted = new System.Threading.SendOrPostCallback(this.OnUpdateDomainOwnershipOperationCompleted); } this.InvokeAsync("UpdateDomainOwnership", new object[] { sCLTRID, credential, sResourceID, sLosingOwner, gaining}, this.UpdateDomainOwnershipOperationCompleted, userState); }
public string UpdateDomainOwnership(string sCLTRID, Credential credential, string sResourceID, string sLosingOwner, GainingOwner gaining) { object[] results = this.Invoke("UpdateDomainOwnership", new object[] { sCLTRID, credential, sResourceID, sLosingOwner, gaining}); return ((string)(results[0])); }