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

getDefaultNotebook_Process() public method

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