Gets or sets the type of data that the connection node data instance is storing. Namespace: Microsoft.ConfigurationManagement.AdminConsole
Assembly: Microsoft.ConfigurationManagement (in microsoft.configurationmanagement.dll)

Usage

Visual Basic
Dim instance As ConnectionNodeData
Dim value As DataType

value = instance.TypeOfData

instance.TypeOfData = value

Syntax

Visual Basic
<DefaultValueAttribute(DataType.String)> _
<XmlAttributeAttribute("DataType")> _
Public Property TypeOfData As DataType
C#
[DefaultValueAttribute(DataType.String)] 
[XmlAttributeAttribute("DataType")] 
public DataType TypeOfData { get; set; }
C++
[DefaultValueAttribute(DataType::String)] 
[XmlAttributeAttribute(L"DataType")] 
public:
property DataType TypeOfData {
		DataType get ();
		void set (DataType value);
}
J#
/** @property */
/** @attribute DebuggerStepThroughAttribute() */ 
public DataType get_TypeOfData ()

/** @property */
/** @attribute DebuggerStepThroughAttribute() */ 
public void set_TypeOfData (DataType value)
JScript
DebuggerStepThroughAttribute 
public function get TypeOfData () : DataType

DebuggerStepThroughAttribute 
public function set TypeOfData (value : DataType)

Property Value

SmsSiteConnectionNode.ConnectionNodeData.DataType enumeration value.

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 2003, Windows Vista

Target Platforms

Windows Server 2003,Windows Vista

See Also