Evernote.EDAM.NoteStore.NoteStore.Client.send_getNoteSearchText C# (CSharp) Method

send_getNoteSearchText() public method

public send_getNoteSearchText ( string authenticationToken, string guid, bool noteOnly, bool tokenizeForIndexing ) : void
authenticationToken string
guid string
noteOnly bool
tokenizeForIndexing bool
return void
      public void send_getNoteSearchText(string authenticationToken, string guid, bool noteOnly, bool tokenizeForIndexing)
      #endif
      {
        oprot_.WriteMessageBegin(new TMessage("getNoteSearchText", TMessageType.Call, seqid_));
        getNoteSearchText_args args = new getNoteSearchText_args();
        args.AuthenticationToken = authenticationToken;
        args.Guid = guid;
        args.NoteOnly = noteOnly;
        args.TokenizeForIndexing = tokenizeForIndexing;
        args.Write(oprot_);
        oprot_.WriteMessageEnd();
        #if SILVERLIGHT || NETFX_CORE
        return oprot_.Transport.BeginFlush(callback, state);
        #else
        oprot_.Transport.Flush();
        #endif
      }

Same methods

NoteStore.Client::send_getNoteSearchText ( AsyncCallback callback, object state, string authenticationToken, string guid, bool noteOnly, bool tokenizeForIndexing ) : IAsyncResult
NoteStore.Client