1 write to UnderlyingConstructor
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingConstructorInfo.cs (1)
16UnderlyingConstructor = constructor;
29 references to UnderlyingConstructor
System.Reflection.Context (29)
System\Reflection\Context\Custom\AttributeUtils.cs (1)
93ConstructorInfo provider = constructor.UnderlyingConstructor;
System\Reflection\Context\Delegation\DelegatingConstructorInfo.cs (25)
21get { return UnderlyingConstructor.Attributes; } 26get { return UnderlyingConstructor.CallingConvention; } 31get { return UnderlyingConstructor.ContainsGenericParameters; } 36get { return UnderlyingConstructor.DeclaringType; } 41get { return UnderlyingConstructor.IsGenericMethod; } 46get { return UnderlyingConstructor.IsGenericMethodDefinition; } 51get { return UnderlyingConstructor.IsSecurityCritical; } 56get { return UnderlyingConstructor.IsSecuritySafeCritical; } 61get { return UnderlyingConstructor.IsSecurityTransparent; } 66get { return UnderlyingConstructor.MetadataToken; } 71get { return UnderlyingConstructor.MethodHandle; } 76get { return UnderlyingConstructor.Module; } 81get { return UnderlyingConstructor.Name; } 86get { return UnderlyingConstructor.ReflectedType; } 93return UnderlyingConstructor.GetCustomAttributes(attributeType, inherit); 98return UnderlyingConstructor.GetCustomAttributes(inherit); 103return UnderlyingConstructor.GetCustomAttributesData(); 108return UnderlyingConstructor.GetGenericArguments(); 113return UnderlyingConstructor.GetMethodBody(); 118return UnderlyingConstructor.GetMethodImplementationFlags(); 123return UnderlyingConstructor.GetParameters(); 128return UnderlyingConstructor.Invoke(invokeAttr, binder, parameters, culture); 133return UnderlyingConstructor.Invoke(obj, invokeAttr, binder, parameters, culture); 138return UnderlyingConstructor.IsDefined(attributeType, inherit); 143return UnderlyingConstructor.ToString();
System\Reflection\Context\Projection\ProjectingConstructorInfo.cs (3)
76UnderlyingConstructor.Equals(other.UnderlyingConstructor); 81return Projector.GetHashCode() ^ UnderlyingConstructor.GetHashCode();