Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ICustomAttributeProvider.cs « System.Reflection « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c0c06c274acbaebf3019089b463f1687e6a4aeeb (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
//
// System.Reflection.ICustomAttributeProvider.cs
//
// Author:
//   Miguel de Icaza (miguel@ximian.com)
//
// (C) Ximian, Inc.  http://www.ximian.com
//
// TODO: Mucho left to implement.
//

namespace System.Reflection {

	public interface ICustomAttributeProvider {

		object [] GetCustomAttributes (bool inherit);
		object [] GetCustomAttributes (Type attribute_type, bool inherit);

		/// <summary>
		///   Probes whether one or more `attribute_type' types are
		///   defined by this member
		/// </summary>
		bool IsDefined (Type attribute_type, bool inherit);
	}
}