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