publicize 2 events on UmbracoModule

This commit is contained in:
Shannon
2016-11-18 13:48:18 +01:00
parent 8ba6cb3abf
commit 93ee850bcc
6 changed files with 13 additions and 11 deletions

View File

@@ -3,7 +3,7 @@ namespace Umbraco.Web.Routing
/// <summary>
/// Represents the outcome of trying to route an incoming request.
/// </summary>
internal enum EnsureRoutableOutcome
public enum EnsureRoutableOutcome
{
/// <summary>
/// Request routes to a document.

View File

@@ -5,7 +5,7 @@ namespace Umbraco.Web.Routing
/// <summary>
/// Event args containing information about why the request was not routable, or if it is routable
/// </summary>
internal class RoutableAttemptEventArgs : UmbracoRequestEventArgs
public class RoutableAttemptEventArgs : UmbracoRequestEventArgs
{
public EnsureRoutableOutcome Outcome { get; private set; }

View File

@@ -6,7 +6,7 @@ namespace Umbraco.Web.Routing
/// <summary>
/// Event args used for event launched during a request (like in the UmbracoModule)
/// </summary>
internal class UmbracoRequestEventArgs : EventArgs
public class UmbracoRequestEventArgs : EventArgs
{
public UmbracoContext UmbracoContext { get; private set; }
public HttpContextBase HttpContext { get; private set; }