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