From 68c6f353f57180cc5394fd5efa5776aff77bd5e2 Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Fri, 18 Oct 2019 13:37:15 -0500 Subject: [PATCH] Configuration language enhancement (#15193) --- aspnetcore/fundamentals/configuration/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnetcore/fundamentals/configuration/index.md b/aspnetcore/fundamentals/configuration/index.md index 1a4de3b8f0..dc6dcc1009 100644 --- a/aspnetcore/fundamentals/configuration/index.md +++ b/aspnetcore/fundamentals/configuration/index.md @@ -5,7 +5,7 @@ description: Learn how to use the Configuration API to configure an ASP.NET Core monikerRange: '>= aspnetcore-2.1' ms.author: riande ms.custom: mvc -ms.date: 08/12/2019 +ms.date: 10/18/2019 uid: fundamentals/configuration/index --- # Configuration in ASP.NET Core @@ -767,7 +767,7 @@ The dictionary is used with a call to `AddInMemoryCollection` to provide the con ## GetValue -[ConfigurationBinder.GetValue\](xref:Microsoft.Extensions.Configuration.ConfigurationBinder.GetValue*) extracts a value from configuration with a specified key and converts it to the specified type. An overload permits you to provide a default value if the key isn't found. +[ConfigurationBinder.GetValue\](xref:Microsoft.Extensions.Configuration.ConfigurationBinder.GetValue*) extracts a single value from configuration with a specified key and converts it to the specified noncollection type. An overload accepts a default value. The following example: