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

updateTag_Process() public method

public updateTag_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot TProtocol
oprot TProtocol
return void
      public void updateTag_Process(int seqid, TProtocol iprot, TProtocol oprot)
      {
        updateTag_args args = new updateTag_args();
        args.Read(iprot);
        iprot.ReadMessageEnd();
        updateTag_result result = new updateTag_result();
        try {
          result.Success = iface_.updateTag(args.AuthenticationToken, args.Tag);
        } 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("updateTag", TMessageType.Reply, seqid)); 
        result.Write(oprot);
        oprot.WriteMessageEnd();
        oprot.Transport.Flush();
      }
NoteStore.Processor