예제 #1
0
 public string RefreshToken(ref WindowsService.Authentication.OTAuthentication OTAuthentication)
 {
     WindowsService.Authentication.RefreshTokenRequest inValue = new WindowsService.Authentication.RefreshTokenRequest();
     inValue.OTAuthentication = OTAuthentication;
     WindowsService.Authentication.RefreshTokenResponse retVal = ((WindowsService.Authentication.Authentication)(this)).RefreshToken(inValue);
     OTAuthentication = retVal.OTAuthentication;
     return(retVal.RefreshTokenResult);
 }
예제 #2
0
 WindowsService.Authentication.RefreshTokenResponse WindowsService.Authentication.Authentication.RefreshToken(WindowsService.Authentication.RefreshTokenRequest request)
 {
     return(base.Channel.RefreshToken(request));
 }