e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
64 lines
2.1 KiB
C#
64 lines
2.1 KiB
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="DefaultPropertyAttribute.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
/*
|
|
*/
|
|
namespace System.ComponentModel {
|
|
using System;
|
|
using System.Diagnostics;
|
|
using System.Security.Permissions;
|
|
|
|
/// <devdoc>
|
|
/// <para>Specifies the default property for a component.</para>
|
|
/// </devdoc>
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public sealed class DefaultPropertyAttribute : Attribute {
|
|
/// <devdoc>
|
|
/// This is the default event name.
|
|
/// </devdoc>
|
|
private readonly string name;
|
|
|
|
/// <devdoc>
|
|
/// <para>
|
|
/// Initializes a new instance of
|
|
/// the <see cref='System.ComponentModel.DefaultPropertyAttribute'/> class.
|
|
/// </para>
|
|
/// </devdoc>
|
|
public DefaultPropertyAttribute(string name) {
|
|
this.name = name;
|
|
}
|
|
|
|
/// <devdoc>
|
|
/// <para>
|
|
/// Gets the name of the default property for the component this attribute is
|
|
/// bound to.
|
|
/// </para>
|
|
/// </devdoc>
|
|
public string Name {
|
|
get {
|
|
return name;
|
|
}
|
|
}
|
|
|
|
/// <devdoc>
|
|
/// <para>
|
|
/// Specifies the default value for the <see cref='System.ComponentModel.DefaultPropertyAttribute'/>, which is <see langword='null'/>. This
|
|
/// <see langword='static '/>field is read-only.
|
|
/// </para>
|
|
/// </devdoc>
|
|
public static readonly DefaultPropertyAttribute Default = new DefaultPropertyAttribute(null);
|
|
|
|
public override bool Equals(object obj) {
|
|
DefaultPropertyAttribute other = obj as DefaultPropertyAttribute;
|
|
return (other != null) && other.Name == name;
|
|
}
|
|
|
|
public override int GetHashCode() {
|
|
return base.GetHashCode();
|
|
}
|
|
}
|
|
}
|