diff --git a/src/Microsoft.AspNet.Mvc.Core/CacheProfile.cs b/src/Microsoft.AspNet.Mvc.Core/CacheProfile.cs index 2651ac04a6..f313d3313a 100644 --- a/src/Microsoft.AspNet.Mvc.Core/CacheProfile.cs +++ b/src/Microsoft.AspNet.Mvc.Core/CacheProfile.cs @@ -11,28 +11,29 @@ namespace Microsoft.AspNet.Mvc /// /// Gets or sets the duration in seconds for which the response is cached. /// If this property is set to a non null value, - /// the "max-age" in "Cache-control" header is set in the . + /// the "max-age" in "Cache-control" header is set in the + /// . /// public int? Duration { get; set; } /// /// Gets or sets the location where the data from a particular URL must be cached. /// If this property is set to a non null value, - /// the "Cache-control" header is set in the . + /// the "Cache-control" header is set in the . /// public ResponseCacheLocation? Location { get; set; } /// /// Gets or sets the value which determines whether the data should be stored or not. /// When set to , it sets "Cache-control" header in - /// to "no-store". + /// to "no-store". /// Ignores the "Location" parameter for values other than "None". /// Ignores the "Duration" parameter. /// public bool? NoStore { get; set; } /// - /// Gets or sets the value for the Vary header in . + /// Gets or sets the value for the Vary header in . /// public string VaryByHeader { get; set; } }