Controller BeforeActionInvocation Method NFX Class Library

[This is preliminary documentation and is subject to change.]

Override to add logic/filtering right before the invocation of action method. Return TRUE to indicate that request has already been handled and no need to call method body and AfterActionInvocation in which case return result via 'out result' paremeter. The default implementation calls ActionFilters

Namespace: NFX.Wave.MVC
Assembly: NFX.Wave (in NFX.Wave.dll) Version: 3.0.0.1 (3.0.0.1)
Syntax

protected internal virtual bool BeforeActionInvocation(
	WorkContext work,
	string action,
	MethodInfo method,
	Object[] args,
	ref Object result
)

Return Value

Type: OnlineBoolean
See Also