You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Reads a specified entry from the cache, and mark it as <see cref="TrackState.Changed"/>. If the entry is not in the cache, it will be automatically loaded from the underlying storage.
314
+
/// Reads a specified entry from the cache, and mark it as <see cref="TrackState.Changed"/>.
315
+
/// If the entry is not in the cache, it will be automatically loaded from the underlying storage.
315
316
/// </summary>
316
317
/// <param name="key">The key of the entry.</param>
317
-
/// <param name="factory">A delegate used to create the entry if it doesn't exist. If the entry already exists, the factory will not be used.</param>
318
-
/// <returns>The cached data. Or <see langword="null"/> if it doesn't exist and the <paramref name="factory"/> is not provided.</returns>
@@ -362,10 +371,15 @@ public bool Contains(StorageKey key)
362
371
}
363
372
364
373
/// <summary>
365
-
/// Reads a specified entry from the cache. If the entry is not in the cache, it will be automatically loaded from the underlying storage. If the entry doesn't exist, the factory will be used to create a new one.
374
+
/// Reads a specified entry from the cache.
375
+
/// If the entry is not in the cache, it will be automatically loaded from the underlying storage.
376
+
/// If the entry doesn't exist, the factory will be used to create a new one.
366
377
/// </summary>
367
378
/// <param name="key">The key of the entry.</param>
368
-
/// <param name="factory">A delegate used to create the entry if it doesn't exist. If the entry already exists, the factory will not be used.</param>
379
+
/// <param name="factory">
380
+
/// A delegate used to create the entry if it doesn't exist.
381
+
/// If the entry already exists, the factory will not be used.
0 commit comments