Make FindContent return type nullable (#12545)

This commit is contained in:
Mole
2022-06-07 14:45:42 +02:00
committed by GitHub
parent a8b68202f3
commit fffbbbeb5f

View File

@@ -11,5 +11,5 @@ public interface IVirtualPageController
/// <summary>
/// Returns the <see cref="IPublishedContent" /> to use as the current page for the request
/// </summary>
IPublishedContent FindContent(ActionExecutingContext actionExecutingContext);
IPublishedContent? FindContent(ActionExecutingContext actionExecutingContext);
}