ManagementBaseObject Class (System.Management)

Switch View :
ScriptFree
.NET Framework Class Library
ManagementBaseObject Class

Contains the basic elements of a management object. It serves as a base class to more specific management object classes.

Inheritance Hierarchy

System.Object
  System.MarshalByRefObject
    System.ComponentModel.Component
      System.Management.ManagementBaseObject
        System.Management.ManagementObject

Namespace:  System.Management
Assembly:  System.Management (in System.Management.dll)
Syntax

Visual Basic
<SerializableAttribute> _
Public Class ManagementBaseObject _
	Inherits Component _
	Implements ICloneable, ISerializable
C#
[SerializableAttribute]
public class ManagementBaseObject : Component, 
	ICloneable, ISerializable
Visual C++
[SerializableAttribute]
public ref class ManagementBaseObject : public Component, 
	ICloneable, ISerializable
F#
[<SerializableAttribute>]
type ManagementBaseObject =  
    class
        inherit Component
        interface ICloneable
        interface ISerializable
    end

The ManagementBaseObject type exposes the following members.

Constructors

  Name Description
Protected method ManagementBaseObject Initializes a new instance of the ManagementBaseObject class that is serializable.
Top
Properties

  Name Description
Protected property CanRaiseEvents Gets a value indicating whether the component can raise an event. (Inherited from Component.)
Public property ClassPath Gets the path to the management object's class.
Public property Container Gets the IContainer that contains the Component. (Inherited from Component.)
Protected property DesignMode Gets a value that indicates whether the Component is currently in design mode. (Inherited from Component.)
Protected property Events Gets the list of event handlers that are attached to this Component. (Inherited from Component.)
Public property Item Gets access to property values through [] notation. This property is the indexer for the ManagementBaseObject class. You can use the default indexed properties defined by a type, but you cannot explicitly define your own. However, specifying the expando attribute on a class automatically provides a default indexed property whose type is Object and whose index type is String.
Public property Properties Gets a collection of PropertyData objects describing the properties of the management object.
Public property Qualifiers Gets the collection of QualifierData objects defined on the management object. Each element in the collection holds information such as the qualifier name, value, and flavor.
Public property Site Gets or sets the ISite of the Component. (Inherited from Component.)
Public property SystemProperties Gets the collection of WMI system properties of the management object (for example, the class name, server, and namespace). WMI system property names begin with "__".
Top
Methods

  Name Description
Public method Clone Returns a copy of the object.
Public method CompareTo Compares this object to another, based on specified options.
Public method CreateObjRef Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object. (Inherited from MarshalByRefObject.)
Public method Dispose()
Protected method Dispose(Boolean) Releases the unmanaged resources used by the Component and optionally releases the managed resources. (Inherited from Component.)
Public method Equals Compares two management objects. (Overrides Object.Equals(Object).)
Protected method Finalize Releases unmanaged resources and performs other cleanup operations before the Component is reclaimed by garbage collection. (Inherited from Component.)
Public method GetHashCode Serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures like a hash table. (Overrides Object.GetHashCode().)
Public method GetLifetimeService Retrieves the current lifetime service object that controls the lifetime policy for this instance. (Inherited from MarshalByRefObject.)
Protected method GetObjectData Populates a SerializationInfo with the data necessary to deserialize the field represented by this instance.
Public method GetPropertyQualifierValue Returns the value of the specified property qualifier.
Public method GetPropertyValue Gets an equivalent accessor to a property's value.
Public method GetQualifierValue Gets the value of the specified qualifier.
Protected method GetService Returns an object that represents a service provided by the Component or by its Container. (Inherited from Component.)
Public method GetText Returns a textual representation of the object in the specified format.
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Public method InitializeLifetimeService Obtains a lifetime service object to control the lifetime policy for this instance. (Inherited from MarshalByRefObject.)
Protected method MemberwiseClone() Creates a shallow copy of the current Object. (Inherited from Object.)
Protected method MemberwiseClone(Boolean) Creates a shallow copy of the current MarshalByRefObject object. (Inherited from MarshalByRefObject.)
Public method SetPropertyQualifierValue Sets the value of the specified property qualifier.
Public method SetPropertyValue Sets the value of the named property.
Public method SetQualifierValue Sets the value of the named qualifier.
Public method ToString Returns a String containing the name of the Component, if any. This method should not be overridden. (Inherited from Component.)
Top
Events

  Name Description
Public event Disposed Occurs when the component is disposed by a call to the Dispose method. (Inherited from Component.)
Top
Operators

  Name Description
Public operator Static member Explicit(ManagementBaseObject to IntPtr) Provides the internal WMI object represented by a ManagementObject.
Top
Explicit Interface Implementations

  Name Description
Explicit interface implemetation Private method ISerializable.GetObjectData Implements the System.Runtime.Serialization.ISerializable interface and returns the data needed to serialize the ManagementBaseObject.
Top
Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
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.
See Also

Reference