Applies To: System Center Service Manager 2010
Represents the assembly information of a managed module type definition.
Schema Hierarchy
ManagementPack
  TypeDefinitions
    ModuleTypes
      DataSourceModuleType
        ModuleImplementation (DataSourceModuleType)
          Managed (DataSourceModuleType)
            Assembly (DataSourceModuleType)
Syntax
<Assembly>Strong-named assembly</Assembly>
Attributes and Elements
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.  | 
Example
The following XML sample illustrates how to express a data source module type that has been implemented in managed code.
<DataSourceModuleType ID="Microsoft.SystemCenter.CM.SqmDS" Accessibility="Public"  RunAs="Microsoft.SystemCenter.CM.ActionAccount">
  <Configuration>
    <xsd:element name="Protocol" type="xsd:string" />
    <xsd:element name="Port" type="xsd:integer" />
    <xsd:element name="UseWindowsAuth" type="xsd:boolean" />
  </Configuration>
  <ModuleImplementation>
    <Managed>
      <Assembly>Microsoft.Mom.Modules.ClientMonitoring</Assembly>
      <Type>Microsoft.EnterpriseManagement.Mom.Modules.ClientMonitoring.SqmDS</Type>
    </Managed>
  </ModuleImplementation>
  <OutputType>Microsoft.SystemCenter.CM.SqmData</OutputType>
</DataSourceModuleType>