LineSharp.Datatypes.TalkService.Client.recv_changeVerificationMethod C# (CSharp) Method

recv_changeVerificationMethod() public method

public recv_changeVerificationMethod ( ) : VerificationSessionData
return VerificationSessionData
      public VerificationSessionData recv_changeVerificationMethod()
      {
        TMessage msg = iprot_.ReadMessageBegin();
        if (msg.Type == TMessageType.Exception) {
          TApplicationException x = TApplicationException.Read(iprot_);
          iprot_.ReadMessageEnd();
          throw x;
        }
        changeVerificationMethod_result result = new changeVerificationMethod_result();
        result.Read(iprot_);
        iprot_.ReadMessageEnd();
        if (result.__isset.success) {
          return result.Success;
        }
        if (result.__isset.e) {
          throw result.E;
        }
        throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "changeVerificationMethod failed: unknown result");
      }
TalkService.Client