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

listLinkedNotebooks_Process() public method

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