An object that represents a precompiled grammar inside an assembly.
Instance member | Description |
|
The `Assembly` that contains this precompiled grammar.
|
|
Gets the actual `Grammar` of this object.
|
Full Usage:
this.GrammarName
Returns: string
|
The precompiled grammar's name.
|
Static member | Description |
Full Usage:
PrecompiledGrammar.GetAllFromAssembly(asm)
Parameters:
Assembly
Returns: IReadOnlyDictionary<string, PrecompiledGrammar>
|
Gets all precompiled grammars of an assembly. This function is safe to call from multiple threads and efficient to call many times with the same assembly. The cache it internally uses does not prevent the assembly from being unloaded.
|