14 lines
533 B
C#
14 lines
533 B
C#
|
//------------------------------------------------------------------------------
|
||
|
// <copyright file="ProgressChangedEventHandler.cs" company="Microsoft">
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
// </copyright>
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
namespace System.ComponentModel
|
||
|
{
|
||
|
using System.Security.Permissions;
|
||
|
|
||
|
[HostProtection(SharedState = true)]
|
||
|
public delegate void ProgressChangedEventHandler(object sender, ProgressChangedEventArgs e);
|
||
|
}
|