summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Threading/SendOrPostCallback.cs
blob: b81d2bff64d005516fb283c27acfd9e6638d71b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
/*============================================================
**
**
**
** Purpose: Represents a method to be called when a message is to be dispatched to a synchronization context. 
**
** 
===========================================================*/

namespace System.Threading
{    
    public delegate void SendOrPostCallback(Object state);
}