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
Copy file name to clipboardExpand all lines: docs/core/extensions/options.md
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Options pattern
3
3
author: IEvangelist
4
4
description: Learn the options pattern to represent groups of related settings in .NET apps. The options pattern uses classes to provide strongly-typed access to settings.
5
5
ms.author: dapine
6
-
ms.date: 07/18/2024
6
+
ms.date: 08/13/2024
7
7
---
8
8
9
9
# Options pattern in .NET
@@ -144,6 +144,14 @@ In the preceding code, the `Configure<TOptions>` method is used to register a co
144
144
145
145
## IOptionsMonitor
146
146
147
+
The `IOptionsMonitor` type supports change notifications and enables scenarios where your app may need to respond to configuration source changes dynamically. This is useful when you need to react to changes in configuration data after the app has started. Change notifications are only supported for file-system based configuration providers, such as the following:
0 commit comments