1 write to Metadata
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\BoundAttributeDescriptor.cs (1)
76Metadata = metadata;
15 references to Metadata
Microsoft.CodeAnalysis.Razor.Compiler (12)
Language\BoundAttributeDescriptor.cs (1)
102Metadata.AppendToChecksum(in builder);
Language\BoundAttributeDescriptorExtensions.cs (1)
15return (attribute.Metadata as PropertyMetadata)?.GloballyQualifiedTypeName;
Language\Components\ComponentGenericTypePass.cs (1)
425if (attribute.Metadata is TypeParameterMetadata { Constraints: string constraints })
Language\Components\ComponentNodeWriter.cs (1)
362if (attribute.Metadata is TypeParameterMetadata { NameWithAttributes: string withAttributes })
Language\Components\TagHelperBoundAttributeDescriptorExtensions.cs (8)
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 }; 27=> attribute.Metadata.Kind == MetadataKind.TypeParameter; 30=> attribute.Metadata is TypeParameterMetadata { IsCascading: true }; 39=> attribute.Metadata is PropertyMetadata { IsChildContent: true }; 80=> attribute.Metadata is ChildContentParameterMetadata;
rzc (3)
Json\ObjectReaders_TagHelpers.cs (1)
95var metadata = ReadMetadata(reader, nameof(BoundAttributeDescriptor.Metadata));
Json\ObjectWriters_TagHelpers.cs (2)
130WriteMetadata(writer, nameof(value.Metadata), value.Metadata);