Defines the abstract base class for overrides in a Management Pack. Cast an object of this type as one of the derived types to access override information such as the property or configuration setting that is overridden and the value of the override. For a list of derived classes, see the inheritance hierarchy. Namespace: Microsoft.EnterpriseManagement.Configuration
Assembly: Microsoft.EnterpriseManagement.OperationsManager (in microsoft.enterprisemanagement.operationsmanager.dll)

Usage

Visual Basic
Dim instance As ManagementPackOverride

Syntax

Visual Basic
<SerializableAttribute> _
Public MustInherit Class ManagementPackOverride
		Inherits ManagementPackElement
C#
[SerializableAttribute] 
public abstract class ManagementPackOverride : ManagementPackElement
C++
[SerializableAttribute] 
public ref class ManagementPackOverride abstract : public ManagementPackElement
J#
/** @attribute SerializableAttribute() */ 
public abstract class ManagementPackOverride extends ManagementPackElement
JScript
SerializableAttribute 
public abstract class ManagementPackOverride extends ManagementPackElement

Example

For example code that demonstrates how to create an override, see How To Create an Override.

For example code that demonstrates how to retrieve override information, see How to Get Information about an Override.

Remarks

A Management Pack contains default settings and thresholds that are set by the vendor of the Management Pack. These settings represent the vendor's definition of a healthy state for its product. You can use overrides to adjust these default settings and customize them for your network.


Inheritance Hierarchy

System.Object
   Microsoft.EnterpriseManagement.Configuration.ManagementPackItem
     Microsoft.EnterpriseManagement.Configuration.ManagementPackElement
      Microsoft.EnterpriseManagement.Configuration.ManagementPackOverride
         Derived Classes

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

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

Target Platforms

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

See Also