init lserp cs 5.0

This commit is contained in:
cyf
2026-07-10 15:25:05 +08:00
commit 90f3fda86a
3799 changed files with 976868 additions and 0 deletions
@@ -0,0 +1,44 @@
namespace Cef3.Wrapper
{
using System;
using System.Collections.Generic;
using System.Text;
/// <summary>
/// Used to configure the query router. The same values must be passed to both
/// CefMessageRouterBrowserSide and CefMessageRouterRendererSide. If using multiple
/// router pairs make sure to choose values that do not conflict.
/// </summary>
public sealed class CefMessageRouterConfig
{
public CefMessageRouterConfig()
{
JSQueryFunction = "cefQuery";
JSCancelFunction = "cefQueryCancel";
}
/// <summary>
/// Name of the JavaScript function that will be added to the 'window' object
/// for sending a query. The default value is "cefQuery".
/// </summary>
public string JSQueryFunction { get; set; }
/// <summary>
/// Name of the JavaScript function that will be added to the 'window' object
/// for canceling a pending query. The default value is "cefQueryCancel".
/// </summary>
public string JSCancelFunction { get; set; }
// Validate configuration settings.
internal bool Validate()
{
// Must specify function names.
if (string.IsNullOrEmpty(JSQueryFunction) || string.IsNullOrEmpty(JSCancelFunction))
{
return false;
}
return true;
}
}
}