summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Reflection/ICustomAttributeProvider.cs
blob: faea91a81e0cccb638731728567245cc24f3d0d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
//
// ICustomAttributeProvider is an interface that is implemented by reflection
// 
//    objects which support custom attributes.
//
//
namespace System.Reflection {
    
    using System;

    // Interface does not need to be marked with the serializable attribute
    public interface ICustomAttributeProvider
    {

        // Return an array of custom attributes identified by Type
        Object[] GetCustomAttributes(Type attributeType, bool inherit);


        // Return an array of all of the custom attributes (named attributes are not included)
        Object[] GetCustomAttributes(bool inherit);

    
        // Returns true if one or more instance of attributeType is defined on this member. 
        bool IsDefined (Type attributeType, bool inherit);
    
    }
}