1 write to DeclaringProperty
System.Reflection.Context (1)
System\Reflection\Context\Virtual\VirtualPropertyBase.FuncPropertyAccessorBase.cs (1)
16DeclaringProperty = declaringProperty;
7 references to DeclaringProperty
System.Reflection.Context (7)
System\Reflection\Context\Virtual\VirtualPropertyBase.FuncPropertyAccessorBase.cs (2)
21get { return DeclaringProperty.ReflectionContext; } 31get { return DeclaringProperty.DeclaringType; }
System\Reflection\Context\Virtual\VirtualPropertyBase.PropertyGetterBase.cs (2)
17get { return "get_" + DeclaringProperty.Name; } 22get { return DeclaringProperty.PropertyType; }
System\Reflection\Context\Virtual\VirtualPropertyBase.PropertySetterBase.cs (3)
19get { return "set_" + DeclaringProperty.Name; } 24get { return DeclaringProperty.ReflectionContext.MapType(IntrospectionExtensions.GetTypeInfo(typeof(void))); } 29return _parameterTypes ??= new Type[1] { DeclaringProperty.PropertyType };