Evernote.EDAM.NoteStore.NoteStore.Processor.listTags_Process C# (CSharp) Méthode

listTags_Process() public méthode

public listTags_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot TProtocol
oprot TProtocol
Résultat void
      public void listTags_Process(int seqid, TProtocol iprot, TProtocol oprot)
      {
        listTags_args args = new listTags_args();
        args.Read(iprot);
        iprot.ReadMessageEnd();
        listTags_result result = new listTags_result();
        try {
          result.Success = iface_.listTags(args.AuthenticationToken);
        } catch (Evernote.EDAM.Error.EDAMUserException userException) {
          result.UserException = userException;
        } catch (Evernote.EDAM.Error.EDAMSystemException systemException) {
          result.SystemException = systemException;
        }
        oprot.WriteMessageBegin(new TMessage("listTags", TMessageType.Reply, seqid)); 
        result.Write(oprot);
        oprot.WriteMessageEnd();
        oprot.Transport.Flush();
      }
NoteStore.Processor