Delegate AccessDeniedDelegate
The delegate type used by AccessDenied() to handle access denied reporting to a web browser.
Assembly: EPiServer.dll
Version: 10.10.4
Syntax
[Obsolete("Delegate no longer used. Use IAccessDeniedHandler to handle access denied errors.")]
public delegate void AccessDeniedDelegate(object source);
Parameters
Type |
Name |
Description |
System.Object |
source |
The object that invokes the delegate.
|
Constructors
AccessDeniedDelegate(Object, IntPtr)
Declaration
public AccessDeniedDelegate(object object, IntPtr method)
Parameters
Type |
Name |
Description |
System.Object |
object |
|
System.IntPtr |
method |
|
Methods
BeginInvoke(Object, AsyncCallback, Object)
Declaration
public virtual IAsyncResult BeginInvoke(object source, AsyncCallback callback, object object)
Parameters
Type |
Name |
Description |
System.Object |
source |
|
System.AsyncCallback |
callback |
|
System.Object |
object |
|
Returns
Type |
Description |
System.IAsyncResult |
|
EndInvoke(IAsyncResult)
Declaration
public virtual void EndInvoke(IAsyncResult result)
Parameters
Type |
Name |
Description |
System.IAsyncResult |
result |
|
Invoke(Object)
Declaration
public virtual void Invoke(object source)
Parameters
Type |
Name |
Description |
System.Object |
source |
|
Extension Methods