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

getNote_Process() public method

public getNote_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot Thrift.Protocol.TProtocol
oprot Thrift.Protocol.TProtocol
return void
      public void getNote_Process(int seqid, TProtocol iprot, TProtocol oprot)
      {
        getNote_args args = new getNote_args();
        args.Read(iprot);
        iprot.ReadMessageEnd();
        getNote_result result = new getNote_result();
        try {
          result.Success = iface_.getNote(args.AuthenticationToken, args.Guid, args.WithContent, args.WithResourcesData, args.WithResourcesRecognition, args.WithResourcesAlternateData);
        } 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("getNote", TMessageType.Reply, seqid)); 
        result.Write(oprot);
        oprot.WriteMessageEnd();
        oprot.Transport.Flush();
      }
NoteStore.Processor