LocalizedHtmlString.Value doesn't include arguments (#8376)

* Clarify that Value is prior to formatting with any constructor arguments
This commit is contained in:
gqqnbig 2018-09-07 08:54:53 -07:00 committed by Doug Bunting
parent 74ba9898f4
commit fd80509fef
1 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ namespace Microsoft.AspNetCore.Mvc.Localization
public string Name { get; } public string Name { get; }
/// <summary> /// <summary>
/// The string resource. /// The original resource string, prior to formatting with any constructor arguments.
/// </summary> /// </summary>
public string Value { get; } public string Value { get; }
@ -98,4 +98,4 @@ namespace Microsoft.AspNetCore.Mvc.Localization
formattableString.WriteTo(writer, encoder); formattableString.WriteTo(writer, encoder);
} }
} }
} }