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

findNoteCounts() public method

public findNoteCounts ( string authenticationToken, NoteFilter filter, bool withTrash ) : NoteCollectionCounts
authenticationToken string
filter NoteFilter
withTrash bool
return NoteCollectionCounts
      public NoteCollectionCounts findNoteCounts(string authenticationToken, NoteFilter filter, bool withTrash)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_findNoteCounts(authenticationToken, filter, withTrash);
        return recv_findNoteCounts();

        #else
        var asyncResult = Begin_findNoteCounts(null, null, authenticationToken, filter, withTrash);
        return End_findNoteCounts(asyncResult);

        #endif
      }
      #if SILVERLIGHT || NETFX_CORE
NoteStore.Client