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

setNoteApplicationDataEntry_Process() public method

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