File: system\threading\sendorpostcallback.cs | |
Project: ndp\clr\src\bcl\mscorlib.csproj (mscorlib) |
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // // <OWNER>ericeil</OWNER> /*============================================================ ** ** Class: SendOrPostCallback ** ** ** 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); } |