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