13 references to RuntimeKind
Microsoft.CodeAnalysis.Razor.Compiler (9)
CSharp\DefaultTagHelperDescriptorFactory.cs (1)
40descriptorBuilder.RuntimeKind = RuntimeKind.ITagHelper;
Language\TagHelperDescriptor.cs (2)
23public RuntimeKind RuntimeKind { get; } 58RuntimeKind runtimeKind,
Language\TagHelperDescriptorBuilder.cs (1)
39public RuntimeKind RuntimeKind { get; set; }
Language\TagHelperDescriptorExtensions.cs (1)
19return tagHelper.RuntimeKind == RuntimeKind.ITagHelper;
Language\TagHelpers\Producers\ComponentTagHelperProducer.cs (1)
102builder.RuntimeKind = RuntimeKind.IComponent;
Mvc.Version1_X\ViewComponentTagHelperDescriptorFactory.cs (1)
62descriptorBuilder.RuntimeKind = RuntimeKind.ITagHelper;
Mvc.Version2_X\ViewComponentTagHelperDescriptorFactory.cs (1)
62descriptorBuilder.RuntimeKind = RuntimeKind.ITagHelper;
Mvc\ViewComponentTagHelperDescriptorFactory.cs (1)
62descriptorBuilder.RuntimeKind = RuntimeKind.ITagHelper;
rzc (4)
Json\ObjectReaders_TagHelpers.cs (3)
17var runtimeKind = (RuntimeKind)reader.ReadByteOrDefault(nameof(TagHelperDescriptor.RuntimeKind), defaultValue: (byte)RuntimeKind.IComponent);
Json\ObjectWriters_TagHelpers.cs (1)
17writer.WriteIfNotDefault(nameof(value.RuntimeKind), (byte)value.RuntimeKind, defaultValue: (byte)RuntimeKind.IComponent);