Initializes a new SettablePropertyValue object by specifying the property value to set and whether this is the default value. Namespace: Microsoft.EnterpriseManagement.Administration
Assembly: Microsoft.EnterpriseManagement.OperationsManager (in microsoft.enterprisemanagement.operationsmanager.dll)

Usage

Visual Basic
Dim propertyValue As T
Dim hasDefaultValue As Boolean

Dim instance As New SettablePropertyValue(Of T)(propertyValue, hasDefaultValue)

Syntax

Visual Basic
Public Sub New ( _
		propertyValue As T, _
		hasDefaultValue As Boolean _
)
C#
public SettablePropertyValue (
		T propertyValue,
		bool hasDefaultValue
)
C++
public:
SettablePropertyValue (
		T propertyValue, 
		bool hasDefaultValue
)
J#
public SettablePropertyValue (
		T propertyValue, 
		boolean hasDefaultValue
)
JScript
public function SettablePropertyValue (
		propertyValue : T, 
		hasDefaultValue : boolean
)

Parameters

propertyValue

The property value to set.

hasDefaultValue

A Boolean value that determines whether the value is the default property value. If this value is true, then the property value is the default value, and if this value is false, then the property value is not the default value.

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