namespace Xilium.CefGlue
{
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Runtime.InteropServices;
using Xilium.CefGlue.Interop;
///
/// Generic callback interface used for asynchronous continuation.
///
public sealed unsafe partial class CefCallback
{
///
/// Continue processing.
///
public void Continue()
{
cef_callback_t.cont(_self);
}
///
/// Cancel processing.
///
public void Cancel()
{
cef_callback_t.cancel(_self);
}
}
}