2 instantiations of PropertyMetadata
Microsoft.CodeAnalysis.Razor.Compiler (2)
Language\Components\PropertyMetadata.cs (2)
10
public static PropertyMetadata Default { get; } =
new
();
44
=>
new
()
11 references to PropertyMetadata
Microsoft.CodeAnalysis.Razor.Compiler (11)
Language\BoundAttributeDescriptorExtensions.cs (1)
15
return (attribute.Metadata as
PropertyMetadata
)?.GloballyQualifiedTypeName;
Language\Components\ComponentDesignTimeNodeWriter.cs (1)
661
if (node.BoundAttribute.Metadata is
PropertyMetadata
{ IsInitOnlyProperty: true })
Language\Components\PropertyMetadata.cs (2)
10
public static
PropertyMetadata
Default { get; } = new();
43
public readonly
PropertyMetadata
Build()
Language\Components\TagHelperBoundAttributeDescriptorExtensions.cs (6)
9
=> attribute.Metadata is
PropertyMetadata
{ IsDelegateSignature: true };
12
=> attribute.Metadata is
PropertyMetadata
{ IsDelegateWithAwaitableResult: true };
21
=> attribute.Metadata is
PropertyMetadata
{ IsEventCallback: true };
24
=> attribute.Metadata is
PropertyMetadata
{ IsGenericTyped: true };
39
=> attribute.Metadata is
PropertyMetadata
{ IsChildContent: true };
48
=> builder.MetadataObject is
PropertyMetadata
{ IsChildContent: true };
Language\TagHelpers\Producers\ComponentTagHelperProducer.cs (1)
194
var builder = new
PropertyMetadata
.Builder();