LineSharp.Datatypes.TalkService.Client.recv_verifyPhone C# (CSharp) 메소드

recv_verifyPhone() 공개 메소드

public recv_verifyPhone ( ) : VerificationResult
리턴 VerificationResult
      public VerificationResult recv_verifyPhone()
      {
        TMessage msg = iprot_.ReadMessageBegin();
        if (msg.Type == TMessageType.Exception) {
          TApplicationException x = TApplicationException.Read(iprot_);
          iprot_.ReadMessageEnd();
          throw x;
        }
        verifyPhone_result result = new verifyPhone_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, "verifyPhone failed: unknown result");
      }
TalkService.Client