LINE.Datatypes.TalkService.Processor.resendPinCodeBySMS_Process C# (CSharp) Method

resendPinCodeBySMS_Process() public method

public resendPinCodeBySMS_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot TProtocol
oprot TProtocol
return void
      public void resendPinCodeBySMS_Process(int seqid, TProtocol iprot, TProtocol oprot)
      {
        resendPinCodeBySMS_args args = new resendPinCodeBySMS_args();
        args.Read(iprot);
        iprot.ReadMessageEnd();
        resendPinCodeBySMS_result result = new resendPinCodeBySMS_result();
        try {
          iface_.resendPinCodeBySMS(args.SessionId);
        } catch (TalkException e) {
          result.E = e;
        }
        oprot.WriteMessageBegin(new TMessage("resendPinCodeBySMS", TMessageType.Reply, seqid)); 
        result.Write(oprot);
        oprot.WriteMessageEnd();
        oprot.Transport.Flush();
      }
TalkService.Processor