System.Reflection.CustomAttribute.GetCustomAttributes C# (CSharp) Method

GetCustomAttributes() static private method

static private GetCustomAttributes ( Module decoratedModule, int decoratedMetadataToken, int pcaCount, RuntimeType attributeFilterType ) : object[]
decoratedModule Module
decoratedMetadataToken int
pcaCount int
attributeFilterType RuntimeType
return object[]
        internal unsafe static object[] GetCustomAttributes(
            Module decoratedModule, int decoratedMetadataToken, int pcaCount, RuntimeType attributeFilterType)
        {
            return GetCustomAttributes(decoratedModule, decoratedMetadataToken, pcaCount, attributeFilterType, false, null);
        }
        

Same methods

CustomAttribute::GetCustomAttributes ( Assembly assembly, RuntimeType caType ) : Object[]
CustomAttribute::GetCustomAttributes ( Module module, RuntimeType caType ) : Object[]
CustomAttribute::GetCustomAttributes ( ParameterInfo parameter, RuntimeType caType ) : Object[]
CustomAttribute::GetCustomAttributes ( RuntimeConstructorInfo ctor, RuntimeType caType ) : Object[]
CustomAttribute::GetCustomAttributes ( RuntimeEventInfo e, RuntimeType caType ) : Object[]
CustomAttribute::GetCustomAttributes ( RuntimeFieldInfo field, RuntimeType caType ) : Object[]
CustomAttribute::GetCustomAttributes ( RuntimeMethodInfo method, RuntimeType caType, bool inherit ) : Object[]
CustomAttribute::GetCustomAttributes ( RuntimePropertyInfo property, RuntimeType caType ) : Object[]
CustomAttribute::GetCustomAttributes ( RuntimeType type, RuntimeType caType, bool inherit ) : Object[]
CustomAttribute::GetCustomAttributes ( Module decoratedModule, int decoratedMetadataToken, int pcaCount, RuntimeType attributeFilterType, bool mustBeInheritable, IList derivedAttributes ) : object[]

Usage Example

Esempio n. 1
0
 public override Object[] GetCustomAttributes(bool inherit)
 {
     return(CustomAttribute.GetCustomAttributes(this, typeof(object) as RuntimeType));
 }
All Usage Examples Of System.Reflection.CustomAttribute::GetCustomAttributes