File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,10 +13,12 @@ namespace Simplify.Web.Model;
1313/// <summary>
1414/// Provides the model handling.
1515/// </summary>
16- /// <seealso cref="IModelHandler" />
16+ /// <seealso cref="Simplify.Web.Model. IModelHandler" />
1717/// <remarks>
1818/// Initializes a new instance of the <see cref="HttpModelHandler" /> class.
1919/// </remarks>
20+ /// <seealso cref="IModelHandler" />
21+ /// <param name="resolver">The resolver.</param>
2022/// <param name="context">The context.</param>
2123public class HttpModelHandler ( IDIResolver resolver , IWebContext context ) : IModelHandler
2224{
Original file line number Diff line number Diff line change @@ -6,12 +6,12 @@ namespace Simplify.Web.Page.Generation;
66/// <summary>
77/// Provides the web-page HTML generator.
88/// </summary>
9+ /// <seealso cref="IPageGenerator" />
910/// <remarks>
1011/// Initializes a new instance of the <see cref="PageGenerator" /> class.
1112/// </remarks>
1213/// <param name="templateFactory">The template factory.</param>
13- /// <param name="dataCollector">The data collector.</param>
14- /// <param name="IDynamicEnvironment">The environment.</param>
14+ /// <param name="environment">The environment.</param>
1515public class PageGenerator ( ITemplateFactory templateFactory , IDynamicEnvironment environment ) : IPageGenerator
1616{
1717 /// <summary>
Original file line number Diff line number Diff line change @@ -31,6 +31,10 @@ public bool IsValidPath(string relativeFilePath)
3131 . Any ( _ => File . Exists ( sitePhysicalPath + relativeFilePath ) ) ;
3232 }
3333
34+ /// <summary>
35+ /// Gets the file last modification time.
36+ /// </summary>
37+ /// <param name="relativeFilePath">The relative file path.</param>
3438 public DateTime GetLastModificationTime ( string relativeFilePath ) => File . GetLastWriteTimeUtc ( sitePhysicalPath + relativeFilePath ) . TrimMilliseconds ( ) ;
3539
3640 /// <summary>
You can’t perform that action at this time.
0 commit comments