Initial commit
[mono.git] / mcs / class / referencesource / mscorlib / system / asynccallback.cs
1 // ==++==
2 // 
3 //   Copyright (c) Microsoft Corporation.  All rights reserved.
4 // 
5 // ==--==
6 /*============================================================
7 **
8 ** Interface: AsyncCallbackDelegate
9 **
10 ** Purpose: Type of callback for async operations
11 **
12 ===========================================================*/
13 namespace System {
14     [Serializable]
15     [System.Runtime.InteropServices.ComVisible(true)]
16     public delegate void AsyncCallback(IAsyncResult ar);
17
18 }