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

createLinkedNotebook_Process() public méthode

public createLinkedNotebook_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot Thrift.Protocol.TProtocol
oprot Thrift.Protocol.TProtocol
Résultat void
      public void createLinkedNotebook_Process(int seqid, TProtocol iprot, TProtocol oprot)
      {
        createLinkedNotebook_args args = new createLinkedNotebook_args();
        args.Read(iprot);
        iprot.ReadMessageEnd();
        createLinkedNotebook_result result = new createLinkedNotebook_result();
        try {
          result.Success = iface_.createLinkedNotebook(args.AuthenticationToken, args.LinkedNotebook);
        } catch (Evernote.EDAM.Error.EDAMUserException userException) {
          result.UserException = userException;
        } catch (Evernote.EDAM.Error.EDAMNotFoundException notFoundException) {
          result.NotFoundException = notFoundException;
        } catch (Evernote.EDAM.Error.EDAMSystemException systemException) {
          result.SystemException = systemException;
        }
        oprot.WriteMessageBegin(new TMessage("createLinkedNotebook", TMessageType.Reply, seqid)); 
        result.Write(oprot);
        oprot.WriteMessageEnd();
        oprot.Transport.Flush();
      }
NoteStore.Processor