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

untagAll_Process() public method

public untagAll_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot TProtocol
oprot TProtocol
return void
      public void untagAll_Process(int seqid, TProtocol iprot, TProtocol oprot)
      {
        untagAll_args args = new untagAll_args();
        args.Read(iprot);
        iprot.ReadMessageEnd();
        untagAll_result result = new untagAll_result();
        try {
          iface_.untagAll(args.AuthenticationToken, args.Guid);
        } 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("untagAll", TMessageType.Reply, seqid)); 
        result.Write(oprot);
        oprot.WriteMessageEnd();
        oprot.Transport.Flush();
      }
NoteStore.Processor