Initializes DataCollectionItem class objects.
Namespace: Microsoft.Clm.Shared.Requests
Assembly: Microsoft.Clm.Shared (in microsoft.clm.shared.dll)

Usage

Visual Basic
Dim name As String
Dim value As String

Dim instance As New DataCollectionItem(name, value)

Syntax

Visual Basic
Public Sub New ( _
		name As String, _
		value As String _
)
C#
public DataCollectionItem (
		string name,
		string value
)
C++
public:
DataCollectionItem (
		String^ name, 
		String^ value
)
J#
public DataCollectionItem (
		String name, 
		String value
)
JScript
public function DataCollectionItem (
		name : String, 
		value : String
)

Parameters

name

A String object that contains the name for the data collection item.

value

A String object that contains the value for the data collection item.

Remarks

A client application will have to provide the required number of data collection items as specified by the policy configuration.


Platforms

Development Platforms

Windows 2008 x64 Edition

Target Platforms

Windows XP SP3, Windows Vista SP1+, Windows 7, Windows Server 2008, Windows Server 2008 R2

See Also