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

getNoteApplicationDataEntry_Process() public method

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