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

listSearches_Process() public method

public listSearches_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot TProtocol
oprot TProtocol
return void
      public void listSearches_Process(int seqid, TProtocol iprot, TProtocol oprot)
      {
        listSearches_args args = new listSearches_args();
        args.Read(iprot);
        iprot.ReadMessageEnd();
        listSearches_result result = new listSearches_result();
        try {
          result.Success = iface_.listSearches(args.AuthenticationToken);
        } catch (Evernote.EDAM.Error.EDAMUserException userException) {
          result.UserException = userException;
        } catch (Evernote.EDAM.Error.EDAMSystemException systemException) {
          result.SystemException = systemException;
        }
        oprot.WriteMessageBegin(new TMessage("listSearches", TMessageType.Reply, seqid)); 
        result.Write(oprot);
        oprot.WriteMessageEnd();
        oprot.Transport.Flush();
      }
NoteStore.Processor