Serves as a delegate for handling a query exception, in Configuration Manager 2007, when releasing a session token from a property page. Namespace: Microsoft.ConfigurationManagement.AdminConsole
Assembly: Microsoft.ConfigurationManagement (in microsoft.configurationmanagement.dll)

Usage

Visual Basic
Dim instance As New SmsExceptionHandler(AddressOf HandlerMethod)

Syntax

Visual Basic
Public Delegate Sub SmsExceptionHandler ( _
		sender As Object, _
		e As SmsExceptionHandlerArgs _
)
C#
public delegate void SmsExceptionHandler (
		Object sender,
		SmsExceptionHandlerArgs e
)
C++
public delegate void SmsExceptionHandler (
		Object^ sender, 
		SmsExceptionHandlerArgs^ e
)
J#
/** @delegate */
public delegate void SmsExceptionHandler (
		Object sender, 
		SmsExceptionHandlerArgs e
)
JScript

Parameters

sender

[in] System.Object instance that indicates the sender of the exception.

e

[in] SmsExceptionHandlerArgs object.

Remarks

The query exception that the delegate handles is represented by an SmsQueryException object. The property page is an instance of SmsPropertyPage.


Platforms

Development Platforms

Windows Server 2003, Windows Vista

Target Platforms

Windows Server 2003,Windows Vista

See Also