TreeIndexedTripleCollection Constructor (Boolean, Boolean, Boolean, Boolean, Boolean, Boolean, MultiDictionaryMode) | 
 
            Creates a new Tree Indexed triple collection with the given Indexing options.
            
 
    Namespace: 
   VDS.RDF
    Assembly:
   dotNetRDF (in dotNetRDF.dll) Version: 
Syntaxpublic TreeIndexedTripleCollection(
	bool subjIndex,
	bool predIndex,
	bool objIndex,
	bool subjPredIndex,
	bool subjObjIndex,
	bool predObjIndex,
	MultiDictionaryMode compoundIndexMode
)
Public Sub New ( 
	subjIndex As Boolean,
	predIndex As Boolean,
	objIndex As Boolean,
	subjPredIndex As Boolean,
	subjObjIndex As Boolean,
	predObjIndex As Boolean,
	compoundIndexMode As MultiDictionaryMode
)
Parameters
- subjIndex
 - Type: SystemBoolean
Whether to create a subject index. - predIndex
 - Type: SystemBoolean
Whether to create a predicate index. - objIndex
 - Type: SystemBoolean
Whether to create an object index. - subjPredIndex
 - Type: SystemBoolean
Whether to create a subject predicate index. - subjObjIndex
 - Type: SystemBoolean
Whether to create a subject object index. - predObjIndex
 - Type: SystemBoolean
Whether to create a predicate object index. - compoundIndexMode
 - Type: MultiDictionaryMode
Mode to use for compound indexes. 
See Also