Assembly (ConditionDetectionModuleType)
System Center
Updated: August 10, 2011
Applies To: Operations Manager 2007 R2, System Center Operations Manager 2007
Represents the assembly information of a managed module type definition.
The following sections describe attributes, child elements, and the parent element of the Assembly element.
Attributes
None.
Child Elements
None.
Parent Elements
| Element | Description |
|---|---|
|
Represents the assembly and type information of a managed module type definition. |
The following XML sample illustrates how to express a condition detection module type that has been implemented in managed code.
<ConditionDetectionModuleType ID="Microsoft.SystemCenter.Notification.InlineDirectoryRecipientResolver" Accessibility="Public" Stateful="false" PassThrough="false" Batching="false">
<Configuration>
<IncludeSchemaTypes>
<SchemaType>Microsoft.SystemCenter.Notification.RecipientsSchema</SchemaType>
<SchemaType>Microsoft.SystemCenter.Notification.RecipientDirectorySchema</SchemaType>
</IncludeSchemaTypes>
<xsd:element name="Recipients" type="RecipientsType" />
<xsd:element name="RecipientDirectory" type="RecipientDirectoryType" />
</Configuration>
<ModuleImplementation>
<Managed>
<Assembly>Microsoft.EnterpriseManagement.HealthService.Modules.Notification, Culture="", PublicKeyToken="9396306c2be7fcc4", Version="6.0.4900.0"</Assembly>
<Type>Microsoft.EnterpriseManagement.HealthService.Modules.Notification.InlineDirectoryRecipientResolverModule</Type>
</Managed>
</ModuleImplementation>
<OutputType>Microsoft.SystemCenter.Notification.RecipientsData</OutputType>
<InputTypes>
<InputType>System!System.BaseData</InputType>
</InputTypes>
</ConditionDetectionModuleType>
Show: