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

updateLinkedNotebook_Process() public méthode

public updateLinkedNotebook_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot TProtocol
oprot TProtocol
Résultat void
      public void updateLinkedNotebook_Process(int seqid, TProtocol iprot, TProtocol oprot)
      {
        updateLinkedNotebook_args args = new updateLinkedNotebook_args();
        args.Read(iprot);
        iprot.ReadMessageEnd();
        updateLinkedNotebook_result result = new updateLinkedNotebook_result();
        try {
          result.Success = iface_.updateLinkedNotebook(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("updateLinkedNotebook", TMessageType.Reply, seqid)); 
        result.Write(oprot);
        oprot.WriteMessageEnd();
        oprot.Transport.Flush();
      }
NoteStore.Processor