References the callback method to be called when the asynchronous operation is completed.
Namespace: SystemFirst seen in: .NET v1.0.3705Last seen in: .NET v1.1.4322Last changed in: .NET v1.0.3705Assembly: mscorlib.dll
Rotor explanation...
1: // ==++== 2: // 3: // 4: // Copyright (c) 2002 Microsoft Corporation. All rights reserved. 5: // 6: // The use and distribution terms for this software are contained in the file 7: // named license.txt, which can be found in the root of this distribution. 8: // By using this software in any fashion, you are agreeing to be bound by the 9: // terms of this license. 10: // 11: // You must not remove this notice, or any other, from this software. 12: // 13: // 14: // ==--== 15: /*============================================================ 16: ** 17: ** Interface: AsyncCallbackDelegate 18: ** 19: ** Purpose: Type of callback for async operations 20: ** 21: ===========================================================*/ 22: namespace System { 23: /// <include file='doc\AsyncCallback.uex' path='docs/doc[@for="AsyncCallback"]/*' /> 24: [Serializable()] 25: public delegate void AsyncCallback(IAsyncResult ar); 26: 27: } Generated on 24/10/2003 19:00:30