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

findNotes_Process() public method

public findNotes_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot Thrift.Protocol.TProtocol
oprot Thrift.Protocol.TProtocol
return void
      public void findNotes_Process(int seqid, TProtocol iprot, TProtocol oprot)
      {
        findNotes_args args = new findNotes_args();
        args.Read(iprot);
        iprot.ReadMessageEnd();
        findNotes_result result = new findNotes_result();
        try {
          result.Success = iface_.findNotes(args.AuthenticationToken, args.Filter, args.Offset, args.MaxNotes);
        } 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("findNotes", TMessageType.Reply, seqid)); 
        result.Write(oprot);
        oprot.WriteMessageEnd();
        oprot.Transport.Flush();
      }
NoteStore.Processor