[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]Represents the method that allows users to change how a template is applied to an object. Namespace: Microsoft.EnterpriseManagement.Common
Assembly: Microsoft.EnterpriseManagement.Core (in microsoft.enterprisemanagement.core.dll)

Usage

Visual Basic
Dim instance As New ObjectTemplateCallback(AddressOf HandlerMethod)

Syntax

Visual Basic
Public Delegate Sub ObjectTemplateCallback ( _
		simpleObject As EnterpriseManagementSimpleObject, _
		value As Object _
)
C#
public delegate void ObjectTemplateCallback (
		EnterpriseManagementSimpleObject simpleObject,
		Object value
)
C++
public delegate void ObjectTemplateCallback (
		EnterpriseManagementSimpleObject^ simpleObject, 
		Object^ value
)
J#
/** @delegate */
public delegate void ObjectTemplateCallback (
		EnterpriseManagementSimpleObject simpleObject, 
		Object value
)
JScript

Parameters

simpleObject

The simple object to apply the value to.

value

The value.

Platforms

Development Platforms

Windows Server 2008, Windows Vista, Windows Server 2003, and Windows XP

Target Platforms

Windows Server 2008,Windows Server 2003

See Also