Evernote.EDAM.NoteStore.NoteStore.Processor.getResourceApplicationData_Process C# (CSharp) Method

getResourceApplicationData_Process() public method

public getResourceApplicationData_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot Thrift.Protocol.TProtocol
oprot Thrift.Protocol.TProtocol
return void
      public void getResourceApplicationData_Process(int seqid, TProtocol iprot, TProtocol oprot)
      {
        getResourceApplicationData_args args = new getResourceApplicationData_args();
        args.Read(iprot);
        iprot.ReadMessageEnd();
        getResourceApplicationData_result result = new getResourceApplicationData_result();
        try {
          result.Success = iface_.getResourceApplicationData(args.AuthenticationToken, args.Guid);
        } catch (Evernote.EDAM.Error.EDAMUserException userException) {
          result.UserException = userException;
        } catch (Evernote.EDAM.Error.EDAMSystemException systemException) {
          result.SystemException = systemException;
        } catch (Evernote.EDAM.Error.EDAMNotFoundException notFoundException) {
          result.NotFoundException = notFoundException;
        }
        oprot.WriteMessageBegin(new TMessage("getResourceApplicationData", TMessageType.Reply, seqid)); 
        result.Write(oprot);
        oprot.WriteMessageEnd();
        oprot.Transport.Flush();
      }
NoteStore.Processor