NativeObjectSecurity.ExceptionFromErrorCode Delegate
.NET Framework 2.0
Note: This delegate is new in the .NET Framework version 2.0.
Provides a way for integrators to map numeric error codes to specific exceptions that they create.
Namespace: System.Security.AccessControl
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
'Declaration Protected Friend Delegate Function ExceptionFromErrorCode ( _ errorCode As Integer, _ name As String, _ handle As SafeHandle, _ context As Object _ ) As Exception 'Usage Dim instance As New ExceptionFromErrorCode(AddressOf HandlerMethod)
/** @delegate */ protected delegate Exception ExceptionFromErrorCode ( int errorCode, String name, SafeHandle handle, Object context )
JScript supports the use of delegates, but not the declaration of new ones.
Parameters
- errorCode
The numeric error code.
- name
The name of the securable object with which the NativeObjectSecurity object is associated.
- handle
The handle of the securable object with which the NativeObjectSecurity object is associated.
- context
An object that contains contextual information about the source or destination of the exception.
Return Value
The Exception this delegate creates.Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: