We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 349a877 commit aa535c5Copy full SHA for aa535c5
1 file changed
src/Providers/EnvironmentVariablesProviderExtensions.cs
@@ -26,6 +26,14 @@ public static IEnvValidator CreateValidator(this IEnvironmentVariablesProvider p
26
public static IEnvReader CreateReader(this IEnvironmentVariablesProvider provider)
27
=> new EnvReader(provider);
28
29
+ /// <summary>
30
+ /// Creates an instance that implements the <see cref="IEnvBinder" /> interface.
31
+ /// </summary>
32
+ /// <param name="provider">The environment variables provider.</param>
33
+ /// <returns>An instance that implements the <see cref="IEnvBinder" /> interface.</returns>
34
+ public static IEnvBinder CreateBinder(this IEnvironmentVariablesProvider provider)
35
+ => new EnvBinder(provider);
36
+
37
/// <summary>
38
/// Converts the environment variables provider to a dictionary.
39
/// </summary>
0 commit comments