19 references to AttributeUtils
System.Reflection.Context (19)
System\Reflection\Context\Custom\CustomConstructorInfo.cs (2)
27return AttributeUtils.GetCustomAttributes(ReflectionContext, this, attributeType); 32return AttributeUtils.IsDefined(this, attributeType, inherit);
System\Reflection\Context\Custom\CustomEventInfo.cs (2)
27return AttributeUtils.GetCustomAttributes(ReflectionContext, this, attributeType); 32return AttributeUtils.IsDefined(this, attributeType, inherit);
System\Reflection\Context\Custom\CustomFieldInfo.cs (2)
27return AttributeUtils.GetCustomAttributes(ReflectionContext, this, attributeType); 32return AttributeUtils.IsDefined(this, attributeType, inherit);
System\Reflection\Context\Custom\CustomMethodInfo.cs (2)
27return AttributeUtils.GetCustomAttributes(ReflectionContext, this, attributeType, inherit); 32return AttributeUtils.IsDefined(this, attributeType, inherit);
System\Reflection\Context\Custom\CustomParameterInfo.cs (2)
27return AttributeUtils.GetCustomAttributes(ReflectionContext, this, attributeType); 32return AttributeUtils.IsDefined(this, attributeType, inherit);
System\Reflection\Context\Custom\CustomPropertyInfo.cs (2)
27return AttributeUtils.GetCustomAttributes(ReflectionContext, this, attributeType); 32return AttributeUtils.IsDefined(this, attributeType, inherit);
System\Reflection\Context\Custom\CustomType.cs (2)
33return AttributeUtils.GetCustomAttributes(ReflectionContext, this, attributeType, inherit); 38return AttributeUtils.IsDefined(this, attributeType, inherit);
System\Reflection\Context\CustomReflectionContext.cs (2)
139return AttributeUtils.FilterCustomAttributes(attributes, attributeFilterType); 145return AttributeUtils.FilterCustomAttributes(attributes, attributeFilterType);
System\Reflection\Context\Virtual\VirtualPropertyInfo.cs (1)
60return CollectionServices.IEnumerableToArray(AttributeUtils.FilterCustomAttributes(_attributes, attributeType), attributeType);
System\Reflection\Context\Virtual\VirtualPropertyInfo.PropertyGetter.cs (1)
42return CollectionServices.IEnumerableToArray(AttributeUtils.FilterCustomAttributes(_attributes, attributeType), attributeType);
System\Reflection\Context\Virtual\VirtualPropertyInfo.PropertySetter.cs (1)
59return CollectionServices.IEnumerableToArray(AttributeUtils.FilterCustomAttributes(_attributes, attributeType), attributeType);