Implemented interface member:
property
MaxLength
Microsoft.TemplateEngine.Core.Contracts.ITokenTrie.MaxLength
1 write to MaxLength
Microsoft.TemplateEngine.Core (1)
Util\TokenTrie.cs (1)
50MaxLength = token.Value.Length;
4 references to MaxLength
Microsoft.TemplateEngine.Core (4)
Expressions\Cpp\CppStyleEvaluatorDefinition.cs (1)
122int targetLen = Math.Min(bufferLength, trie.MaxLength);
Util\TokenTrie.cs (3)
48if (token.Value.Length > MaxLength) 85bufferLength = Math.Min(bufferLength, currentBufferPosition + MaxLength); 97currentBufferPosition = mustMatchPosition ? originalPosition : bufferLength - MaxLength + 1;