Fixing doc comment.

This commit is contained in:
harshgMSFT 2014-08-13 11:57:56 -07:00
parent efdd3054d2
commit e12122ec76
1 changed files with 6 additions and 1 deletions

View File

@ -10,8 +10,13 @@ namespace Microsoft.AspNet.Routing.Constraints
{
/// <summary>
/// Constrains a route parameter to represent only <see cref="DateTime"/> values.
/// Supports date time formats represented by CultureInfo.DateTimeFormat for the CultureInfo.InvariantCulture.
/// </summary>
/// <remarks>
/// This constraint tries to parse strings by using all of the formats returned by the
/// CultureInfo.InvariantCulture.DateTimeFormat.GetAllDateTimePatterns() method.
/// For a sample on how to list all formats which are considered, please visit
/// http://msdn.microsoft.com/en-us/library/aszyst2c(v=vs.110).aspx
/// </remarks>
public class DateTimeRouteConstraint : IRouteConstraint
{
/// <inheritdoc />