| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- //
- // System.Web.UI.ControlBuilderAttribute.cs
- //
- // Duncan Mak ([email protected])
- //
- // (C) Ximian, Inc.
- using System;
- namespace System.Web.UI {
- [AttributeUsage (AttributeTargets.Class)]
- public sealed class ControlBuilderAttribute : Attribute
- {
- Type builderType;
- public static readonly ControlBuilderAttribute Default;
-
- public ControlBuilderAttribute (Type builderType)
- {
- this.builderType = builderType;
- }
- public Type BuilderType {
- get { return builderType; }
- }
- [MonoTODO]
- public override bool Equals (object obj)
- {
- return false;
- }
- [MonoTODO]
- public override int GetHashCode ()
- {
- return 42;
- }
- [MonoTODO]
- public override bool IsDefaultAttribute ()
- {
- return false;
- }
- }
- }
|