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

send_findNoteCounts() public method

public send_findNoteCounts ( string authenticationToken, NoteFilter filter, bool withTrash ) : void
authenticationToken string
filter NoteFilter
withTrash bool
return void
      public void send_findNoteCounts(string authenticationToken, NoteFilter filter, bool withTrash)
      #endif
      {
        oprot_.WriteMessageBegin(new TMessage("findNoteCounts", TMessageType.Call, seqid_));
        findNoteCounts_args args = new findNoteCounts_args();
        args.AuthenticationToken = authenticationToken;
        args.Filter = filter;
        args.WithTrash = withTrash;
        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_findNoteCounts ( AsyncCallback callback, object state, string authenticationToken, NoteFilter filter, bool withTrash ) : IAsyncResult
NoteStore.Client