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

registerWithSnsId_Process() public method

public registerWithSnsId_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot TProtocol
oprot TProtocol
return void
      public void registerWithSnsId_Process(int seqid, TProtocol iprot, TProtocol oprot)
      {
        registerWithSnsId_args args = new registerWithSnsId_args();
        args.Read(iprot);
        iprot.ReadMessageEnd();
        registerWithSnsId_result result = new registerWithSnsId_result();
        try {
          result.Success = iface_.registerWithSnsId(args.SnsIdType, args.SnsAccessToken, args.Region, args.UdidHash, args.DeviceInfo, args.Mid);
        } catch (TalkException e) {
          result.E = e;
        }
        oprot.WriteMessageBegin(new TMessage("registerWithSnsId", TMessageType.Reply, seqid)); 
        result.Write(oprot);
        oprot.WriteMessageEnd();
        oprot.Transport.Flush();
      }
TalkService.Processor