1 write to ContainingType
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\BoundAttributeDescriptor.cs (1)
74ContainingType = containingType;
7 references to ContainingType
Microsoft.CodeAnalysis.Razor.Compiler (4)
Language\BoundAttributeDescriptor.cs (1)
91builder.Append(ContainingType);
Language\Components\ComponentNodeWriter.cs (2)
373if (allowNameof && attribute.BoundAttribute?.ContainingType is string containingType) 1288Debug.Assert(attribute.BoundAttribute?.ContainingType is not null);
Language\TagHelpers\Producers\BindTagHelperProducer.cs (1)
514attribute.ContainingType = valueAttribute.ContainingType;
rzc (3)
Json\ObjectReaders_TagHelpers.cs (1)
92var containingType = reader.ReadStringOrNull(nameof(BoundAttributeDescriptor.ContainingType));
Json\ObjectWriters_TagHelpers.cs (2)
126writer.WriteIfNotNull(nameof(value.ContainingType), value.ContainingType);