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

copyNote_Process() public méthode

public copyNote_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot Thrift.Protocol.TProtocol
oprot Thrift.Protocol.TProtocol
Résultat void
      public void copyNote_Process(int seqid, TProtocol iprot, TProtocol oprot)
      {
        copyNote_args args = new copyNote_args();
        args.Read(iprot);
        iprot.ReadMessageEnd();
        copyNote_result result = new copyNote_result();
        try {
          result.Success = iface_.copyNote(args.AuthenticationToken, args.NoteGuid, args.ToNotebookGuid);
        } 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("copyNote", TMessageType.Reply, seqid)); 
        result.Write(oprot);
        oprot.WriteMessageEnd();
        oprot.Transport.Flush();
      }
NoteStore.Processor