Method | Description | |
---|---|---|
FindApplicationAssemblies ( ) : IEnumerable |
Finds Assembly instances in the current bin path that contain types that implement HttpApplication.
|
|
FindApplicationTypes ( IEnumerable |
Finds all types in the given assembly collection that implement HttpApplication and contain an entry or exit point (or both).
|
|
FindEntryPoint ( |
Finds a method acting as an HttpApplication entry point for the given type.
|
|
FindExitPoint ( |
Finds a method acting as an HttpApplication exit point for the given type.
|
|
HttpApplicationProbe ( ILogger logger, string binPath ) : System |
Initializes a new instance of the HttpApplicationProbe class.
|
Method | Description | |
---|---|---|
FindEventHandler ( |
Finds a method that looks like an event handler on the given type using the given name collection as a whitelist.
|
|
IsHttpApplication ( |
Gets a value indicating whether the given type implements HttpApplication.
|
public FindApplicationAssemblies ( ) : IEnumerable |
||
return | IEnumerable |
public static FindApplicationTypes ( IEnumerable |
||
assemblies | IEnumerable |
The assemblies to find application types for. |
return | IEnumerable |
public static FindEntryPoint ( |
||
type | The type to find the entry point for. | |
return |
public static FindExitPoint ( |
||
type | The type to find the exit point for. | |
return |
public HttpApplicationProbe ( ILogger logger, string binPath ) : System | ||
logger | ILogger | The logger to use. |
binPath | string | The bin path to probe. |
return | System |