//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
namespace System.Runtime
{
enum AsyncCompletionResult
{
///
/// Inidicates that the operation has been queued for completion.
///
Queued,
///
/// Indicates the operation has completed.
///
Completed,
}
}