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

getResourceData_Process() public method

public getResourceData_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot Thrift.Protocol.TProtocol
oprot Thrift.Protocol.TProtocol
return void
      public void getResourceData_Process(int seqid, TProtocol iprot, TProtocol oprot)
      {
        getResourceData_args args = new getResourceData_args();
        args.Read(iprot);
        iprot.ReadMessageEnd();
        getResourceData_result result = new getResourceData_result();
        try {
          result.Success = iface_.getResourceData(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("getResourceData", TMessageType.Reply, seqid)); 
        result.Write(oprot);
        oprot.WriteMessageEnd();
        oprot.Transport.Flush();
      }
NoteStore.Processor