17 lines
845 B
C#
17 lines
845 B
C#
|
//------------------------------------------------------------------------------
|
||
|
// <copyright file="RefreshEventHandler.cs" company="Microsoft">
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
// </copyright>
|
||
|
//------------------------------------------------------------------------------
|
||
|
namespace System.ComponentModel {
|
||
|
using System.Diagnostics;
|
||
|
using System.Security.Permissions;
|
||
|
|
||
|
/// <devdoc>
|
||
|
/// <para>Represents the method that will handle the <see cref='System.ComponentModel.TypeDescriptor.Refresh'/> event
|
||
|
/// raised when a <see cref='System.Type'/> or component is changed during design time.</para>
|
||
|
/// </devdoc>
|
||
|
[HostProtection(SharedState = true)]
|
||
|
public delegate void RefreshEventHandler(RefreshEventArgs e);
|
||
|
}
|