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