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

createSharedNotebook_Process() public method

public createSharedNotebook_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot Thrift.Protocol.TProtocol
oprot Thrift.Protocol.TProtocol
return void
      public void createSharedNotebook_Process(int seqid, TProtocol iprot, TProtocol oprot)
      {
        createSharedNotebook_args args = new createSharedNotebook_args();
        args.Read(iprot);
        iprot.ReadMessageEnd();
        createSharedNotebook_result result = new createSharedNotebook_result();
        try {
          result.Success = iface_.createSharedNotebook(args.AuthenticationToken, args.SharedNotebook);
        } 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("createSharedNotebook", TMessageType.Reply, seqid)); 
        result.Write(oprot);
        oprot.WriteMessageEnd();
        oprot.Transport.Flush();
      }
NoteStore.Processor