namespace Cef3
{
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Runtime.InteropServices;
using Cef3.Interop;
///
/// Callback interface used to asynchronously cancel a download.
///
public sealed unsafe partial class CefDownloadItemCallback
{
///
/// Call to cancel the download.
///
public void Cancel()
{
cef_download_item_callback_t.cancel(_self);
}
///
/// Call to pause the download.
///
public void Pause()
{
cef_download_item_callback_t.pause(_self);
}
///
/// Call to resume the download.
///
public void Resume()
{
cef_download_item_callback_t.resume(_self);
}
}
}