Compartilhar via


Assembly (WriteActionModuleType)

Applies To: System Center Service Manager 2010

[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Represents the assembly information of a managed module type definition.

Schema Hierarchy

ManagementPack
  TypeDefinitions
    ModuleTypes
      WriteActionModuleType
        ModuleImplementation (WriteActionModuleType)
          Managed (WriteActionModuleType)
            Assembly

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

Managed (WriteActionModuleType)

Represents the assembly and type information of a managed module type definition.

Example

The following XML sample illustrates how to express a write action module type that has been implemented in managed code.

<WriteActionModuleType ID="Microsoft.SystemCenter.ADWriter" Accessibility="Public" RunAs="Microsoft.SystemCenter.ADWriterAccount" Batching="false">
  <Configuration>
    <xsd:element name="ManagementServerName" type="xsd:string" />
    <xsd:element name="Domain" type="xsd:string" />
    <xsd:element name="UserAndDomain" type="xsd:string" />
    <xsd:element name="Password" type="xsd:string" />
    <xsd:element name="SecureReferenceId" type="xsd:string" />
    <xsd:element name="dNSXPath" type="xsd:string" />
    <xsd:element name="distinguishedNameXPath" type="xsd:string" />
    <xsd:element name="ExcludesList" minOccurs="0">
      <xsd:complexType>
        <xsd:sequence>
          <xsd:element name="Exclude" type="xsd:string" maxOccurs="unbounded" />
        </xsd:sequence>
      </xsd:complexType>
    </xsd:element>
    <xsd:element name="FailoverList" minOccurs="0">
      <xsd:complexType>
        <xsd:sequence>
          <xsd:element name="ManagementServerGuid" type="xsd:string" maxOccurs="unbounded" />
        </xsd:sequence>
      </xsd:complexType>
    </xsd:element>
  </Configuration>
  <ModuleImplementation Isolation="Any">
    <Managed>
      <Assembly>Microsoft.Mom.ADWriteActionModule, Culture="", PublicKeyToken="9396306c2be7fcc4", Version="6.0.4900.0"</Assembly>
      <Type>Microsoft.EnterpriseManagement.Mom.ADWriteModules.ADWriteModule</Type>
    </Managed>
  </ModuleImplementation>
  <InputType>System!System.BaseData</InputType>
</WriteActionModuleType>

See Also

Reference

Managed (WriteActionModuleType)