/// <remarks/> public void ResetPasswordAsync(ResetPasswordRequest req) { this.ResetPasswordAsync(req, null); }
/// <remarks/> public void ResetPasswordAsync(ResetPasswordRequest req, object userState) { if ((this.ResetPasswordOperationCompleted == null)) { this.ResetPasswordOperationCompleted = new System.Threading.SendOrPostCallback(this.OnResetPasswordOperationCompleted); } this.InvokeAsync("ResetPassword", new object[] { req}, this.ResetPasswordOperationCompleted, userState); }
public ResetPasswordResponse ResetPassword(ResetPasswordRequest req) { object[] results = this.Invoke("ResetPassword", new object[] { req}); return ((ResetPasswordResponse)(results[0])); }