RegistrySetting Class

 

The abstract base class from which Group Policy settings that modify the registry must derive.

Namespace:   Microsoft.GroupPolicy
Assembly:  Microsoft.GroupPolicy.Management.Interop (in Microsoft.GroupPolicy.Management.Interop.dll)

Inheritance Hierarchy

System.Object
  Microsoft.GroupPolicy.RegistryItem
    Microsoft.GroupPolicy.RegistrySetting
      Microsoft.GroupPolicy.PolicyRegistrySetting
      Microsoft.GroupPolicy.PreferenceRegistrySetting

Syntax

public abstract class RegistrySetting : RegistryItem, IEquatable<RegistrySetting>
public ref class RegistrySetting abstract : RegistryItem, IEquatable<RegistrySetting^>
[<AbstractClass>]
type RegistrySetting = 
    class
        inherit RegistryItem
        interface IEquatable<RegistrySetting>
    end
Public MustInherit Class RegistrySetting
    Inherits RegistryItem
    Implements IEquatable(Of RegistrySetting)

Constructors

Name Description
System_CAPS_protmethod RegistrySetting()

Initializes a new instance of the RegistrySetting class.

System_CAPS_protmethod RegistrySetting(RegistrySetting)

Initializes a new instance of the RegistrySetting class by using another registry setting.

Properties

Name Description
System_CAPS_pubproperty FullKeyPath

Gets the full key path for the registry item.(Inherited from RegistryItem.)

System_CAPS_pubproperty HasValue

Gets a value that indicates whether the registry setting has a value associated with it.

System_CAPS_pubproperty Hive

Gets or sets the registry hive for the registry item.(Inherited from RegistryItem.)

System_CAPS_pubproperty KeyPath

Gets or sets the key path for the registry item.(Inherited from RegistryItem.)

System_CAPS_pubproperty Type

Gets a value that indicates the data type of the registry setting.

System_CAPS_pubproperty Value

Gets the value data for the registry setting.

System_CAPS_pubproperty ValueName

Gets or sets the value name for this registry setting.

Methods

Name Description
System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_pubmethod Equals(RegistryItem)

Determines whether the specified registry item is equal to this registry item.(Inherited from RegistryItem.)

System_CAPS_pubmethod Equals(RegistrySetting)

Determines whether the specified registry setting is equal to this registry setting.

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod GetBinaryValue()

Retrieves the data value for a registry setting that modifies the registry with Binary (REG_BINARY) data.

System_CAPS_pubmethod GetDWordValue()

Retrieves the data value for a registry setting that modifies the registry with DWord (REG_DWORD) data.

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetMultiStringValue()

Retrieves the data value for a registry setting that modifies the registry with MultiString (REG_MULTI_SZ) data.

System_CAPS_pubmethod GetQWordValue()

Retrieves the data value for a registry setting that modifies the registry with QWord (REG_QWORD) data.

System_CAPS_pubmethod GetStringValue()

Retrieves the data value for a registry setting that modifies the registry with String (REG_SZ) data.

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_pubmethod GetUInt32Value()

Retrieves the data value as unsigned for a registry setting that modifies the registry with DWord (REG_DWORD) data.

System_CAPS_pubmethod GetUInt64Value()

Retrieves the data value as unsigned for a registry setting that modifies the registry with QWord (REG_QDWORD) data.

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod RemoveValue()

Removes the registry value for the registry setting.

System_CAPS_pubmethod SetValue(String, Byte[])

Configures the registry setting with a Binary (REG_BINARY) value that has the specified value name and value data.

System_CAPS_pubmethod SetValue(String, ICollection, RegistryValueKind)

Configures the registry setting with a Binary (REG_BINARY) or MultiString (REG_MULTI_SZ) value that has the specified value name and value data.

System_CAPS_pubmethod SetValue(String, Int32)

Configures the registry setting with a DWord (REG_DWORD) value by using the specified Int32.

System_CAPS_pubmethod SetValue(String, Int64)

Configures the registry setting with a QWord (REG_QWORD) value by using the specified Int64.

System_CAPS_pubmethod SetValue(String, String)

Configures the registry setting with a String (REG_SZ) value by using the specified string.

System_CAPS_pubmethod SetValue(String, String, RegistryValueKind)

Configures the registry setting with a String (REG_SZ), ExpandString (REG_EXPAND_SZ), or MultiString (REG_MULTI_SZ) value that has the specified value name and value data.

System_CAPS_pubmethod SetValue(String, String[])

Configures the registry setting with a MultiString (REG_MULTI_SZ) value that has the specified value name by using an array of strings.

System_CAPS_pubmethod SetValue(String, UInt32)

Configures the registry setting with a DWord (REG_DWORD) value that has the specified value name by using the specified UInt32.

System_CAPS_pubmethod SetValue(String, UInt64)

Configures the registry setting with a QWord (REG_QWORD) value that has the specified value name by using the specified UInt64.

System_CAPS_pubmethod ToString()

(Inherited from Object.)

Remarks

The following classes extend the RegistrySetting class:

You can extend the class to create classes that represent other registry-based Group Policy settings.

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

Microsoft.GroupPolicy Namespace

Return to top