From 19ca77ac2db874d396fbe047ae548db7cc57b76c Mon Sep 17 00:00:00 2001 From: "N. Taylor Mullen" Date: Wed, 4 Feb 2015 16:40:06 -0800 Subject: [PATCH] Fixed xml docs. --- src/Microsoft.AspNet.Mvc.Core/CacheProfile.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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; } }