Initializes a new Record instance.

Namespace:  Endeca.Data
Assembly:  Endeca.Data (in Endeca.Data.dll) Version: 2.1.3.0 (2.1.3.622)

Syntax

C#
public Record(
	string id,
	PropertyMap properties,
	DimensionValueCollection dimensionValues,
	IDictionary<string, string> snippets
)
Visual Basic (Declaration)
Public Sub New ( _
	id As String, _
	properties As PropertyMap, _
	dimensionValues As DimensionValueCollection, _
	snippets As IDictionary(Of String, String) _
)
Visual C++
public:
Record(
	String^ id, 
	PropertyMap^ properties, 
	DimensionValueCollection^ dimensionValues, 
	IDictionary<String^, String^>^ snippets
)

Parameters

id
Type: System..::.String
The unique identifier (specification) of this record.
properties
Type: Endeca.Data..::.PropertyMap
The properties of this record.
dimensionValues
Type: Endeca.Data..::.DimensionValueCollection
The dimension values for this record.
snippets
Type: System.Collections.Generic..::.IDictionary<(Of <(String, String>)>)
The snippets for this record.

See Also