예제 #1
0
 public System.Threading.Tasks.Task <WebAdmin.Service.ChangePasswordResponse> ChangePasswordAsync(string userName, string oldPassword, string newPassword)
 {
     WebAdmin.Service.ChangePasswordRequest inValue = new WebAdmin.Service.ChangePasswordRequest();
     inValue.Body             = new WebAdmin.Service.ChangePasswordRequestBody();
     inValue.Body.userName    = userName;
     inValue.Body.oldPassword = oldPassword;
     inValue.Body.newPassword = newPassword;
     return(((WebAdmin.Service.WebServiceSoap)(this)).ChangePasswordAsync(inValue));
 }
예제 #2
0
 public bool ChangePassword(string userName, string oldPassword, string newPassword)
 {
     WebAdmin.Service.ChangePasswordRequest inValue = new WebAdmin.Service.ChangePasswordRequest();
     inValue.Body             = new WebAdmin.Service.ChangePasswordRequestBody();
     inValue.Body.userName    = userName;
     inValue.Body.oldPassword = oldPassword;
     inValue.Body.newPassword = newPassword;
     WebAdmin.Service.ChangePasswordResponse retVal = ((WebAdmin.Service.WebServiceSoap)(this)).ChangePassword(inValue);
     return(retVal.Body.ChangePasswordResult);
 }
예제 #3
0
 System.Threading.Tasks.Task <WebAdmin.Service.ChangePasswordResponse> WebAdmin.Service.WebServiceSoap.ChangePasswordAsync(WebAdmin.Service.ChangePasswordRequest request)
 {
     return(base.Channel.ChangePasswordAsync(request));
 }
예제 #4
0
 WebAdmin.Service.ChangePasswordResponse WebAdmin.Service.WebServiceSoap.ChangePassword(WebAdmin.Service.ChangePasswordRequest request)
 {
     return(base.Channel.ChangePassword(request));
 }