Noemax FastInfoset.NET
MaxVocabularyStringIndex Property
See Also  Send Feedback
Noemax.FastInfoset Namespace > XmlFastInfosetWriter Class : MaxVocabularyStringIndex Property






Gets and sets the maximum number of strings that may be added to the vocabulary.

Syntax

Visual Basic (Declaration) 
Public Property MaxVocabularyStringIndex As Integer
Visual Basic (Usage)Copy Code
Dim instance As XmlFastInfosetWriter
Dim value As Integer
 
instance.MaxVocabularyStringIndex = value
 
value = instance.MaxVocabularyStringIndex
C# 
public int MaxVocabularyStringIndex {get; set;}
Delphi 
public read-write property MaxVocabularyStringIndex: Integer; 
JScript 
public function get,set MaxVocabularyStringIndex : int
Managed Extensions for C++ 
public: __property int get_MaxVocabularyStringIndex();
public: __property void set_MaxVocabularyStringIndex( 
   int value
);
C++/CLI 
public:
property int MaxVocabularyStringIndex {
   int get();
   void set (    int value);
}

Remarks

The vocabulary is used by Fast Infoset to reduce redundancy and increase compactness. All occurrences of values added to the vocabulary are removed from the document and replaced by an index to the corresponding entry in the vocabulary.

The maximum number of strings specifies up to how many strings may be added to the vocabulary. When this limit is reached, no more values are added to the vocabulary. A higher limit might result in higher compactness but might also result in higher resource consumption than a lower limit.

See Also