IIndexableGraphCreateIndex Method |
Generate an index with a particular name for a particular class.
Namespace:
VelocityGraph.Frontenac.Blueprints
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax IIndex CreateIndex(
string indexName,
Type indexClass,
params Parameter[] indexParameters
)
Function CreateIndex (
indexName As String,
indexClass As Type,
ParamArray indexParameters As Parameter()
) As IIndex
IIndex^ CreateIndex(
String^ indexName,
Type^ indexClass,
... array<Parameter^>^ indexParameters
)
abstract CreateIndex :
indexName : string *
indexClass : Type *
indexParameters : Parameter[] -> IIndex
Parameters
- indexName
- Type: SystemString
the name of the manual index - indexClass
- Type: SystemType
the element class that this index is indexing (can be base class) - indexParameters
- Type: VelocityGraph.Frontenac.BlueprintsParameter
a collection of parameters for the underlying index implementation
Return Value
Type:
IIndexthe index created
See Also