Implemented interface member:
property
Directive
Microsoft.AspNetCore.Razor.Language.IDirectiveDescriptorBuilder.Directive
1 write to Directive
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\DirectiveDescriptor.cs (1)
185
Directive
= name;
6 references to Directive
Microsoft.CodeAnalysis.Razor.Compiler (6)
Language\DirectiveDescriptor.cs (6)
205
if (
Directive
.Length == 0)
207
throw new InvalidOperationException(Resources.FormatDirectiveDescriptor_InvalidDirectiveKeyword(
Directive
));
210
for (var i = 0; i <
Directive
.Length; i++)
212
if (!char.IsLetter(
Directive
[i]))
214
throw new InvalidOperationException(Resources.FormatDirectiveDescriptor_InvalidDirectiveKeyword(
Directive
));
230
return new DefaultDirectiveDescriptor(
Directive
, Kind, Usage, Tokens.ToArray(), DisplayName, Description);