Amazon.Util.Internal.TypeFactory.TypeInfoWrapper.GetCustomAttributes C# (CSharp) Method

GetCustomAttributes() public method

public GetCustomAttributes ( ITypeInfo attributeType, bool inherit ) : object[]
attributeType ITypeInfo
inherit bool
return object[]
            public override object[] GetCustomAttributes(ITypeInfo attributeType, bool inherit)
            {
                return this._typeInfo.GetCustomAttributes(((TypeInfoWrapper)attributeType)._type, inherit).ToArray();
            }

Same methods

TypeFactory.TypeInfoWrapper::GetCustomAttributes ( bool inherit ) : object[]