18 lines
466 B
C#
18 lines
466 B
C#
// ==++==
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
// ==--==
|
|
/*============================================================
|
|
**
|
|
** Interface: AsyncCallbackDelegate
|
|
**
|
|
** Purpose: Type of callback for async operations
|
|
**
|
|
===========================================================*/
|
|
namespace System {
|
|
//| <include path='docs/doc[@for="AsyncCallback"]/*' />
|
|
public delegate void AsyncCallback(IAsyncResult ar);
|
|
|
|
}
|