FastAsyncCallback.cs 348 B

12345678910
  1. //-----------------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //-----------------------------------------------------------------------------
  4. namespace System.Runtime
  5. {
  6. using System;
  7. delegate void FastAsyncCallback(object state, Exception asyncException);
  8. }