// Copyright © 2015 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
namespace CefSharp
{
///
/// Flags that represent CefURLRequest status.
///
public enum UrlRequestStatus
{
///
/// Unknown status.
///
Unknown = 0,
///
/// Request succeeded.
///
Success,
///
/// An IO request is pending, and the caller will be informed when it is completed.
///
IoPending,
///
/// Request was canceled programatically.
///
Canceled,
///
/// Request failed for some reason.
///
Failed
}
}