Ejemplo n.º 1
0
 public int answerChallenge(int encryptedResponse, int originalChallenge, out int credential)
 {
     Rock.TeleAtlas.Authentication.answerChallengeRequest inValue = new Rock.TeleAtlas.Authentication.answerChallengeRequest();
     inValue.encryptedResponse = encryptedResponse;
     inValue.originalChallenge = originalChallenge;
     Rock.TeleAtlas.Authentication.answerChallengeResponse retVal = ((Rock.TeleAtlas.Authentication.AuthenticationPortType)(this)).answerChallenge(inValue);
     credential = retVal.credential;
     return(retVal.resultCode);
 }
Ejemplo n.º 2
0
 Rock.TeleAtlas.Authentication.answerChallengeResponse Rock.TeleAtlas.Authentication.AuthenticationPortType.answerChallenge(Rock.TeleAtlas.Authentication.answerChallengeRequest request)
 {
     return(base.Channel.answerChallenge(request));
 }