namespace Xilium.CefGlue
{
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Runtime.InteropServices;
using Xilium.CefGlue.Interop;
///
/// Callback interface used for asynchronous continuation of JavaScript dialog
/// requests.
///
public sealed unsafe partial class CefJSDialogCallback
{
///
/// Continue the JS dialog request. Set |success| to true if the OK button was
/// pressed. The |user_input| value should be specified for prompt dialogs.
///
public void Continue(bool success, string userInput)
{
fixed (char* userInput_str = userInput)
{
var n_userInput = new cef_string_t(userInput_str, userInput != null ? userInput.Length : 0);
cef_jsdialog_callback_t.cont(_self, success ? 1 : 0, &n_userInput);
}
}
}
}