5 overrides of Constructor
System.Private.CoreLib (1)
src\System\Reflection\RuntimeCustomAttributeData.cs (1)
415public override ConstructorInfo Constructor => m_ctor;
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingCustomAttributeData.cs (1)
20public override ConstructorInfo Constructor
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\CustomAttributes\RoCustomAttributeData.cs (1)
19public sealed override ConstructorInfo Constructor => _lazyConstructorInfo ??= ComputeConstructor();
System.Xaml.Tests (2)
System\Xaml\XamlSchemaContextTests.cs (1)
1042public override ConstructorInfo Constructor => ConstructorResult!;
System\Xaml\XamlTypeTests.cs (1)
5306public override ConstructorInfo Constructor => ConstructorResult!;
28 references to Constructor
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (1)
Debugger\MemberInfo\CustomAttributeDataImpl.cs (1)
29return new ConstructorInfoImpl(CustomAttributeData.Constructor);
Microsoft.CodeAnalysis.Test.Utilities (1)
Platform\Custom\MetadataSignatureHelper.cs (1)
92AppendType(attribute.Constructor.DeclaringType, sb);
PresentationBuildTasks (5)
src\Microsoft.DotNet.Wpf\src\PresentationFramework\System\Windows\Markup\XamlReaderHelper.cs (2)
4938if( attributes[i].Constructor.ReflectedType == KnownTypes.Types[(int)KnownElements.ContentWrapperAttribute] ) 5713if (cad.Constructor.ReflectedType == attrType)
src\Microsoft.DotNet.Wpf\src\PresentationFramework\System\Windows\Markup\XmlnsCache.cs (1)
220ConstructorInfo cinfo = data.Constructor;
src\Microsoft.DotNet.Wpf\src\Shared\System\Windows\Markup\ReflectionHelper.cs (2)
291if (cad.Constructor.ReflectedType == attrType) 324ConstructorInfo cinfo = cad.Constructor;
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (2)
3014if (AttributeTypeNamesMatch(attributeType, data.Constructor.ReflectedType!)) 3046if (AttributeTypeNamesMatch(attributeType, data.Constructor.ReflectedType!))
src\libraries\System.Private.CoreLib\src\System\Reflection\CustomAttributeData.cs (2)
52vsb.Append(Constructor.DeclaringType!.FullName); 82public virtual Type AttributeType => Constructor.DeclaringType!;
src\System\Reflection\RuntimeCustomAttributeData.cs (1)
227if (attrs[i].Constructor.DeclaringType == caType)
src\System\Reflection\RuntimeParameterInfo.cs (2)
376Debug.Assert(attr.Constructor.DeclaringType == typeof(DecimalConstantAttribute)); 397Debug.Assert(attr.Constructor.DeclaringType == typeof(DateTimeConstantAttribute));
src\System\RuntimeType.CoreCLR.cs (1)
1590if (ReferenceEquals(attrs[i].Constructor.DeclaringType, DefaultMemberAttrType))
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingCustomAttributeData.cs (1)
22get { return UnderlyingAttribute.Constructor; }
System.Xaml (10)
src\Microsoft.DotNet.Wpf\src\Shared\System\Windows\Markup\ReflectionHelper.cs (2)
291if (cad.Constructor.ReflectedType == attrType) 324ConstructorInfo cinfo = cad.Constructor;
System\Xaml\MS\Impl\XmlNsInfo.cs (5)
168if (LooseTypeExtensions.AssemblyQualifiedNameEquals(cad.Constructor.DeclaringType, typeof(XmlnsDefinitionAttribute))) 259if (LooseTypeExtensions.AssemblyQualifiedNameEquals(cad.Constructor.DeclaringType, typeof(InternalsVisibleToAttribute))) 318if (LooseTypeExtensions.AssemblyQualifiedNameEquals(cad.Constructor.DeclaringType, typeof(XmlnsCompatibleWithAttribute))) 371if (LooseTypeExtensions.AssemblyQualifiedNameEquals(cad.Constructor.DeclaringType, typeof(XmlnsPrefixAttribute))) 421if (LooseTypeExtensions.AssemblyQualifiedNameEquals(cad.Constructor.DeclaringType, typeof(RootNamespaceAttribute)))
System\Xaml\Schema\Reflector.cs (3)
521if (TypesAreEqual(_attributeData[i].Constructor.DeclaringType, attributeType)) 535if (TypesAreEqual(_attributeData[i].Constructor.DeclaringType, attributeType)) 545cad.Constructor.DeclaringType, Member, expectedCount, expectedType));
System.Xaml.Tests (2)
System\Xaml\XamlTypeTests.cs (2)
5212ConstructorResult = new CustomConstructorInfo(c.Constructor) 5214DeclaringTypeResult = new ReflectionOnlyType(c.Constructor.DeclaringType!)