Ejemplo n.º 1
0
 public int requestChallenge(string userName, int minutesValid, out int encryptedID)
 {
     Rock.TeleAtlas.Authentication.requestChallengeRequest inValue = new Rock.TeleAtlas.Authentication.requestChallengeRequest();
     inValue.userName     = userName;
     inValue.minutesValid = minutesValid;
     Rock.TeleAtlas.Authentication.requestChallengeResponse retVal = ((Rock.TeleAtlas.Authentication.AuthenticationPortType)(this)).requestChallenge(inValue);
     encryptedID = retVal.encryptedID;
     return(retVal.resultCode);
 }
Ejemplo n.º 2
0
 Rock.TeleAtlas.Authentication.requestChallengeResponse Rock.TeleAtlas.Authentication.AuthenticationPortType.requestChallenge(Rock.TeleAtlas.Authentication.requestChallengeRequest request)
 {
     return(base.Channel.requestChallenge(request));
 }