e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
44 lines
1.3 KiB
C#
44 lines
1.3 KiB
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="InitializationEventAttribute.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
/*
|
|
*/
|
|
namespace System.ComponentModel {
|
|
|
|
using System;
|
|
using System.Security.Permissions;
|
|
|
|
/// <devdoc>
|
|
/// <para>Specifies which event is fired on initialization.</para>
|
|
/// </devdoc>
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public sealed class InitializationEventAttribute : Attribute {
|
|
|
|
private string eventName = null;
|
|
|
|
/// <devdoc>
|
|
/// <para>
|
|
/// Initializes a new instance of the <see cref='System.ComponentModel.InitializationEventAttribute'/> class.
|
|
/// </para>
|
|
/// </devdoc>
|
|
public InitializationEventAttribute(string eventName) {
|
|
this.eventName = eventName;
|
|
}
|
|
|
|
|
|
/// <devdoc>
|
|
/// <para>
|
|
/// Gets the name of the initialization event.
|
|
/// </para>
|
|
/// </devdoc>
|
|
public string EventName {
|
|
get {
|
|
return this.eventName;
|
|
}
|
|
}
|
|
}
|
|
}
|