// // 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); /// /// Probes whether one or more `attribute_type' types are /// defined by this member /// bool IsDefined (Type attribute_type, bool inherit); } }