14 lines
513 B
C#
Raw Normal View History

//------------------------------------------------------------------------------
// <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);
}