Evernote.EDAM.NoteStore.NoteStore.Client.findNoteCounts C# (CSharp) Méthode

findNoteCounts() public méthode

public findNoteCounts ( string authenticationToken, NoteFilter filter, bool withTrash ) : NoteCollectionCounts
authenticationToken string
filter NoteFilter
withTrash bool
Résultat 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