diff --git a/AlipayMonitor.cs b/AlipayMonitor.cs new file mode 100644 index 0000000..855d524 --- /dev/null +++ b/AlipayMonitor.cs @@ -0,0 +1,1955 @@ +using Microsoft.Web.WebView2.Core; +using Microsoft.Web.WebView2.WinForms; +using System.Net; +using System.Net.Http; +using System.Text; +using System.Text.Json; +using System.Text.Json.Serialization; +using System.Text.RegularExpressions; + +namespace Vmianqian; + +/// +/// 支付宝监控状态变更事件参数。 +/// 用于通知主界面:登录成功、Cookie 失效、轮询启动、轮询停止、发生异常等。 +/// +public sealed class AlipayStatusChangedEventArgs : EventArgs +{ + /// + /// 当前状态代码,例如:Ready / Running / Stopped / CookieExpired / Error + /// + public string StatusCode { get; init; } = string.Empty; + + /// + /// 给 UI 展示的中文描述信息。 + /// + public string Message { get; init; } = string.Empty; + + /// + /// 可选异常对象,便于调用方记录详细日志。 + /// + public Exception? Exception { get; init; } +} + +/// +/// 支付宝登录成功事件参数。 +/// 当用户在 WebView2 中完成扫码登录后,提取 Cookie 并通知主界面。 +/// +public sealed class AlipayLoginSucceededEventArgs : EventArgs +{ + /// + /// 提取到的原始 Cookie 列表。 + /// + public IReadOnlyList Cookies { get; init; } = Array.Empty(); + + /// + /// 已转换为 HttpClient 可用格式的 CookieContainer。 + /// + public CookieContainer CookieContainer { get; init; } = new(); + + /// + /// 自动提取到的 ctoken。 + /// 可来自请求 URL 参数,也可来自 Cookie。 + /// + public string CToken { get; init; } = string.Empty; + + /// + /// 当前登录完成后所在地址。 + /// + public string CurrentUrl { get; init; } = string.Empty; +} + +/// +/// 支付宝账单事件。 +/// 当轮询到一笔新的收款记录时,向外抛出此事件,便于主界面更新表格、调用服务端回调。 +/// +public sealed class AlipayPaymentDetectedEventArgs : EventArgs +{ + /// + /// 支付宝订单号 / 流水号。 + /// 用于本地去重。 + /// + public string OrderNo { get; init; } = string.Empty; + + /// + /// 金额。 + /// + public decimal Amount { get; init; } + + /// + /// 付款说明 / 备注。 + /// + public string Remark { get; init; } = string.Empty; + + /// + /// 收款时间。 + /// + public DateTimeOffset PaidAt { get; init; } + + /// + /// 付款人信息。 + /// + public string Payer { get; init; } = string.Empty; + + /// + /// 原始响应 JSON,便于调试。 + /// + public string RawJson { get; init; } = string.Empty; +} + +/// +/// 支付宝监控配置。 +/// 该类只保存“支付宝监控”所需的核心参数。 +/// +public sealed class AlipayMonitorOptions +{ + /// + /// 支付宝登录页地址。 + /// 实战中可根据抓包结果改成更稳定的登录入口。 + /// + public string LoginUrl { get; set; } = "https://auth.alipay.com/login/index.htm"; + + /// + /// 个人账单接口地址。 + /// 注意:这里先给出占位地址,真实项目中必须通过 F12 抓包确认。 + /// + public string BillApiUrl { get; set; } = "https://consumeprod.alipay.com/record/advanced.htm"; + + /// + /// 轮询最小间隔秒数。 + /// 为了降低风控,不建议写死固定频率。 + /// + public int MinPollSeconds { get; set; } = 15; + + /// + /// 轮询最大间隔秒数。 + /// + public int MaxPollSeconds { get; set; } = 35; + + /// + /// 可选:支付宝 AppId。 + /// 如果某些接口请求头 / 参数里需要带上,可从 UI 配置传入。 + /// + public string AppId { get; set; } = string.Empty; + + /// + /// 可选:支付宝用户 PID / UserId。 + /// 如果后续业务需要绑定到账户信息,可以通过配置保存。 + /// + public string UserId { get; set; } = string.Empty; + + /// + /// 可选:从真实请求 URL 中提取出来的 ctoken。 + /// 许多支付宝接口会把它作为防 CSRF / 会话校验参数放在 QueryString 中。 + /// + public string CToken { get; set; } = string.Empty; + + /// + /// 可选:JSONP 回调名。 + /// 某些支付宝接口返回 callback({...}) 这种 JSONP,而不是纯 JSON。 + /// + public string JsonpCallback { get; set; } = "callback"; + + /// + /// 账单查询条数。 + /// + public int PageSize { get; set; } = 10; + + /// + /// 轮询时默认回查最近多少天的账单。 + /// + public int QueryDays { get; set; } = 1; +} + +/// +/// 支付宝账单接口响应模型示例。 +/// 注意:真实字段名要以 F12 抓到的 JSON 为准,这里只是演示“如何解析 JSON”。 +/// +public sealed class AlipayBillApiResponse +{ + [JsonPropertyName("success")] + public bool Success { get; set; } + + [JsonPropertyName("message")] + public string Message { get; set; } = string.Empty; + + [JsonPropertyName("data")] + public AlipayBillApiData? Data { get; set; } + + /// + /// 支付宝消息中心接口常见字段:ok / fail。 + /// 你的当前接口 getMsgInfosNew.json 返回的就是这一套结构。 + /// + [JsonPropertyName("stat")] + public string Stat { get; set; } = string.Empty; + + /// + /// 支付宝消息中心返回的消息数组。 + /// + [JsonPropertyName("infos")] + public List Infos { get; set; } = new(); +} + +/// +/// 支付宝账单接口 data 节点。 +/// +public sealed class AlipayBillApiData +{ + [JsonPropertyName("records")] + public List Records { get; set; } = new(); +} + +/// +/// 单笔账单记录示例。 +/// 真实字段名称、结构、时间格式请以抓包结果为准后再微调。 +/// +public sealed class AlipayBillRecord +{ + /// + /// 支付宝交易流水号 / 订单号。 + /// 去重时优先使用这个字段。 + /// + [JsonPropertyName("tradeNo")] + public string TradeNo { get; set; } = string.Empty; + + /// + /// 订单号备用字段。 + /// 有些接口可能叫 bizInNo / trade_no / orderNo。 + /// + [JsonPropertyName("orderNo")] + public string OrderNo { get; set; } = string.Empty; + + /// + /// 金额。 + /// + [JsonPropertyName("amount")] + public decimal Amount { get; set; } + + /// + /// 备注。 + /// + [JsonPropertyName("remark")] + public string Remark { get; set; } = string.Empty; + + /// + /// 付款方昵称。 + /// + [JsonPropertyName("payerName")] + public string PayerName { get; set; } = string.Empty; + + /// + /// 状态,例如 SUCCESS。 + /// + [JsonPropertyName("status")] + public string Status { get; set; } = string.Empty; + + /// + /// 支付时间文本。 + /// 真实接口可能是 yyyy-MM-dd HH:mm:ss,也可能是时间戳。 + /// + [JsonPropertyName("gmtCreate")] + public string GmtCreate { get; set; } = string.Empty; + + /// + /// 兜底接收真实支付宝接口中的其它字段。 + /// 当当前模型字段名与真实返回不一致时,可从这里继续提取。 + /// + [JsonExtensionData] + public Dictionary Extra { get; set; } = new(); + + public string GetFirstNonEmpty(params string[] names) + { + foreach (var name in names) + { + if (!Extra.TryGetValue(name, out var element)) + { + continue; + } + + var value = element.ValueKind switch + { + JsonValueKind.String => element.GetString(), + JsonValueKind.Number => element.ToString(), + JsonValueKind.True => "true", + JsonValueKind.False => "false", + _ => element.ToString() + }; + + if (!string.IsNullOrWhiteSpace(value)) + { + return value.Trim(); + } + } + + return string.Empty; + } + + public decimal TryGetAmountFromExtra() + { + foreach (var key in new[] { "amount", "totalAmount", "transAmount", "price", "money", "paidAmount" }) + { + if (!Extra.TryGetValue(key, out var element)) + { + continue; + } + + if (element.ValueKind == JsonValueKind.Number && element.TryGetDecimal(out var decimalValue)) + { + return decimalValue; + } + + var text = element.ToString(); + if (decimal.TryParse(text, out decimalValue)) + { + return decimalValue; + } + } + + var mergedText = string.Join(" ", new[] + { + Remark, + GetFirstNonEmpty("content", "title", "mainDesc", "desc", "memo") + }.Where(x => !string.IsNullOrWhiteSpace(x))); + + var match = Regex.Match(mergedText, @"(?:¥|¥)?\s*(\d+(?:\.\d{1,2})?)"); + if (match.Success && decimal.TryParse(match.Groups[1].Value, out var parsed)) + { + return parsed; + } + + return 0m; + } + + public string BuildDebugPreview() + { + if (Extra.Count == 0) + { + return $"tradeNo={TradeNo}, orderNo={OrderNo}, amount={Amount}, remark={Remark}, payerName={PayerName}, gmtCreate={GmtCreate}"; + } + + var parts = Extra + .Take(12) + .Select(x => $"{x.Key}={x.Value}") + .ToList(); + + return string.Join(", ", parts); + } +} + +/// +/// 支付宝 Web 轮询监听核心类。 +/// 职责: +/// 1. 接收登录后 Cookie +/// 2. 用 HttpClient + CookieContainer 调用账单接口 +/// 3. 随机延迟轮询,降低风控 +/// 4. 基于订单号进行本地内存去重 +/// 5. 当 Cookie 失效时通过 Event 通知 UI 停止轮询 +/// +public sealed class AlipayMonitor : IDisposable +{ + static AlipayMonitor() + { + // .NET Core / .NET 5+ 默认不加载 GBK/GB2312/GB18030 等代码页。 + // 支付宝部分 HTML 页面仍可能使用这些中文编码,因此这里必须显式注册。 + Encoding.RegisterProvider(CodePagesEncodingProvider.Instance); + } + + private readonly AlipayMonitorOptions _options; + private readonly JsonSerializerOptions _jsonOptions = new() + { + PropertyNameCaseInsensitive = true + }; + + private readonly Random _random = new(); + private readonly HashSet _processedOrderNos = new(StringComparer.OrdinalIgnoreCase); + private readonly object _syncRoot = new(); + + private HttpClient? _httpClient; + private HttpClientHandler? _httpHandler; + private CancellationTokenSource? _pollingCts; + private CookieContainer? _cookieContainer; + private bool _hasCompletedInitialSnapshot; + private bool _disposed; + + /// + /// 状态变更事件。 + /// + public event EventHandler? StatusChanged; + + /// + /// 检测到新收款事件。 + /// + public event EventHandler? PaymentDetected; + + /// + /// 当前是否正在轮询。 + /// + public bool IsRunning => _pollingCts is { IsCancellationRequested: false }; + + public AlipayMonitor(AlipayMonitorOptions options) + { + _options = options ?? throw new ArgumentNullException(nameof(options)); + + if (_options.MinPollSeconds <= 0) + { + _options.MinPollSeconds = 15; + } + + if (_options.MaxPollSeconds < _options.MinPollSeconds) + { + _options.MaxPollSeconds = _options.MinPollSeconds; + } + } + + /// + /// 设置登录后的 Cookie。 + /// 每次重新扫码登录后,都应该调用这个方法刷新 HttpClient 会话。 + /// + /// 由 WebView2 Cookie 转换而来的 CookieContainer。 + public void SetCookies(CookieContainer cookieContainer) + { + ObjectDisposedException.ThrowIf(_disposed, this); + + _cookieContainer = cookieContainer ?? throw new ArgumentNullException(nameof(cookieContainer)); + _hasCompletedInitialSnapshot = false; + RecreateHttpClient(); + RaiseStatus("Ready", "支付宝 Cookie 已更新,可以开始轮询。"); + } + + /// + /// 更新当前会话使用的 ctoken。 + /// 一般在 WebView2 登录完成后,和 Cookie 一起刷新。 + /// + public void SetCtoken(string? ctoken) + { + ObjectDisposedException.ThrowIf(_disposed, this); + + _options.CToken = ctoken?.Trim() ?? string.Empty; + RaiseStatus("Ready", string.IsNullOrWhiteSpace(_options.CToken) + ? "支付宝 ctoken 未提取到,当前仅使用 Cookie 轮询。" + : $"支付宝 ctoken 已更新:{_options.CToken}"); + } + + /// + /// 手动导入已保存的订单号,用于重启程序后避免重复推送最近账单。 + /// 如果不需要,可不调用。 + /// + public void SeedProcessedOrders(IEnumerable orderNos) + { + ObjectDisposedException.ThrowIf(_disposed, this); + + if (orderNos == null) + { + return; + } + + lock (_syncRoot) + { + foreach (var orderNo in orderNos) + { + if (!string.IsNullOrWhiteSpace(orderNo)) + { + _processedOrderNos.Add(orderNo.Trim()); + } + } + } + } + + /// + /// 启动后台轮询任务。 + /// 采用 Task + Task.Delay 方式实现,便于取消与控制随机间隔。 + /// + public void Start() + { + ObjectDisposedException.ThrowIf(_disposed, this); + + if (_cookieContainer == null || _httpClient == null) + { + throw new InvalidOperationException("尚未设置支付宝 Cookie,请先登录并提取 Cookie。"); + } + + if (IsRunning) + { + return; + } + + _pollingCts = new CancellationTokenSource(); + var token = _pollingCts.Token; + + _ = Task.Run(async () => + { + RaiseStatus("Running", "支付宝轮询已启动。"); + + while (!token.IsCancellationRequested) + { + try + { + await PollOnceAsync(token); + } + catch (OperationCanceledException) + { + break; + } + catch (Exception ex) + { + RaiseStatus("Error", $"支付宝轮询发生异常:{ex.Message}", ex); + } + + var delaySeconds = _random.Next(_options.MinPollSeconds, _options.MaxPollSeconds + 1); + try + { + await Task.Delay(TimeSpan.FromSeconds(delaySeconds), token); + } + catch (OperationCanceledException) + { + break; + } + } + + RaiseStatus("Stopped", "支付宝轮询已停止。"); + }, token); + } + + /// + /// 停止后台轮询。 + /// + public void Stop() + { + if (_pollingCts == null) + { + return; + } + + try + { + _pollingCts.Cancel(); + } + catch + { + } + finally + { + _pollingCts.Dispose(); + _pollingCts = null; + } + } + + /// + /// 单次轮询账单接口。 + /// 这里演示了: + /// 1. 如何带 Cookie 发请求 + /// 2. 如何判断 403 / 302 + /// 3. 如何解析 JSON + /// 4. 如何进行本地去重 + /// + private async Task PollOnceAsync(CancellationToken cancellationToken) + { + if (_httpClient == null) + { + throw new InvalidOperationException("HttpClient 未初始化。"); + } + + var rawResponseText = await FetchBillPageContentAsync(cancellationToken); + + if (TryReadRecordsFromHtml(rawResponseText, out var htmlRecords)) + { + RaiseStatus("Trace", $"支付宝 HTML 页面解析成功,本次返回记录数:{htmlRecords.Count}"); + foreach (var record in htmlRecords) + { + cancellationToken.ThrowIfCancellationRequested(); + ProcessRecord(record, rawResponseText); + } + return; + } + + RaiseStatus("Trace", + $"支付宝响应未命中账单表格。tradeRecordsIndex={rawResponseText.Contains("tradeRecordsIndex", StringComparison.OrdinalIgnoreCase)},J-item={rawResponseText.Contains("J-item-", StringComparison.OrdinalIgnoreCase)},tbody={rawResponseText.Contains("(json, _jsonOptions); + } + catch (Exception ex) + { + // advanced.htm 很可能返回 HTML,因此这里不要立刻判定 Cookie 失效。 + RaiseStatus("Trace", $"支付宝响应不是可解析 JSON:{ex.Message},原始响应预览:{TrimForLog(rawResponseText)}"); + RaiseCookieExpiredAndStop($"支付宝账单页面解析失败,疑似 Cookie 失效或触发验证。原始响应预览:{TrimForLog(rawResponseText)}"); + return; + } + + // 兼容多种常见结构: + // 1. data.records + // 2. stat + infos + // 3. 根节点 records/list/tradeList + var records = payload?.Data?.Records; + if ((records == null || records.Count == 0) && payload?.Infos != null) + { + records = payload.Infos; + } + + if ((records == null || records.Count == 0) && TryReadRecordsFromRoot(json, out var rootRecords)) + { + records = rootRecords; + } + + // 如果 stat=ok,即使 infos 为空,也说明 Cookie 实际可用,只是当前没有账单消息。 + if (payload != null && + string.Equals(payload.Stat, "ok", StringComparison.OrdinalIgnoreCase) && + records == null) + { + records = new List(); + } + + if (records == null) + { + RaiseCookieExpiredAndStop($"支付宝账单响应结构异常,疑似会话失效。原始响应预览:{TrimForLog(rawResponseText)}"); + return; + } + + RaiseStatus("Trace", $"支付宝轮询成功,本次返回记录数:{records.Count}"); + + if (!_hasCompletedInitialSnapshot) + { + var seededCount = SeedInitialSnapshot(records); + _hasCompletedInitialSnapshot = true; + RaiseStatus("Ready", $"支付宝首次账单基线预热完成,已载入 {seededCount} 条历史记录,后续仅处理新收款。"); + return; + } + + foreach (var record in records) + { + cancellationToken.ThrowIfCancellationRequested(); + ProcessRecord(record, rawResponseText); + } + } + + /// + /// 拉取支付宝账单页内容。 + /// 对 advanced.htm 优先使用 GET 获取真实 HTML 页面源码; + /// 若未命中表格,再退回 POST 表单方式。 + /// 这样更贴近你在浏览器地址栏直接访问 advanced.htm 时看到的页面结果。 + /// + private async Task FetchBillPageContentAsync(CancellationToken cancellationToken) + { + var isConsumeHtmlPage = _options.BillApiUrl.Contains("consumeprod.alipay.com/record/advanced.htm", StringComparison.OrdinalIgnoreCase); + if (!isConsumeHtmlPage) + { + using var request = BuildBillRequest(); + using var response = await _httpClient!.SendAsync(request, cancellationToken); + return await EnsureResponseAndReadAsync(response, cancellationToken); + } + + using var getRequest = BuildConsumeHtmlGetRequest(); + using var getResponse = await _httpClient!.SendAsync(getRequest, cancellationToken); + var getHtml = await EnsureResponseAndReadAsync(getResponse, cancellationToken); + + if (LooksLikeBillHtml(getHtml)) + { + return getHtml; + } + + RaiseStatus("Trace", $"支付宝 GET advanced.htm 未命中表格,尝试回退 POST。响应预览:{TrimForLog(getHtml, 400)}"); + + using var postRequest = BuildConsumeHtmlPostRequest(); + using var postResponse = await _httpClient!.SendAsync(postRequest, cancellationToken); + return await EnsureResponseAndReadAsync(postResponse, cancellationToken); + } + + /// + /// 构建账单接口请求。 + /// 注意:这里的 QueryString / Header / Referer 都只是“示例模板”, + /// 必须根据你 F12 抓到的真实请求进行替换。 + /// + private HttpRequestMessage BuildBillRequest() + { + var isEnterpriseBillApi = _options.BillApiUrl.Contains("simpleTradeOrderQuery", StringComparison.OrdinalIgnoreCase) || + _options.BillApiUrl.Contains("mbillexprod.alipay.com", StringComparison.OrdinalIgnoreCase); + var isConsumeHtmlPage = _options.BillApiUrl.Contains("consumeprod.alipay.com/record/advanced.htm", StringComparison.OrdinalIgnoreCase); + + HttpRequestMessage request; + if (isConsumeHtmlPage) + { + request = BuildConsumeHtmlGetRequest(); + } + else if (isEnterpriseBillApi) + { + request = BuildEnterpriseBillPostRequest(); + } + else + { + request = BuildLegacyGetRequest(); + } + + ApplyDefaultRequestHeaders(request, isHtmlPage: isConsumeHtmlPage); + return request; + } + + private HttpRequestMessage BuildConsumeHtmlGetRequest() + { + var url = _options.BillApiUrl; + if (!string.IsNullOrWhiteSpace(_options.CToken)) + { + url += (_options.BillApiUrl.Contains('?') ? "&" : "?") + "ctoken=" + Uri.EscapeDataString(_options.CToken); + } + + return new HttpRequestMessage(HttpMethod.Get, url); + } + + private HttpRequestMessage BuildConsumeHtmlPostRequest() + { + var now = DateTime.Now; + var begin = now.Date.AddDays(-Math.Max(1, _options.QueryDays - 1)); + + var form = new Dictionary + { + ["beginDate"] = begin.ToString("yyyy.MM.dd"), + ["beginTime"] = "00:00", + ["endDate"] = now.ToString("yyyy.MM.dd"), + ["endTime"] = "24:00", + ["dateRange"] = _options.QueryDays <= 1 ? "today" : _options.QueryDays <= 7 ? "sevenDays" : "oneMonth", + ["status"] = "all", + ["keyword"] = "bizNo", + ["keyValue"] = string.Empty, + ["dateType"] = "createDate", + ["minAmount"] = string.Empty, + ["maxAmount"] = string.Empty, + ["fundFlow"] = "all", + ["tradeType"] = "ALL", + ["pageNum"] = "1", + ["_input_charset"] = "utf-8" + }; + + if (!string.IsNullOrWhiteSpace(_options.CToken)) + { + form["ctoken"] = _options.CToken; + } + + var request = new HttpRequestMessage(HttpMethod.Post, _options.BillApiUrl) + { + Content = new FormUrlEncodedContent(form) + }; + + ApplyDefaultRequestHeaders(request, isHtmlPage: true); + return request; + } + + private HttpRequestMessage BuildLegacyGetRequest() + { + var builder = new StringBuilder(); + builder.Append(_options.BillApiUrl); + + var separator = _options.BillApiUrl.Contains('?') ? "&" : "?"; + builder.Append(separator); + builder.Append("pageSize=").Append(_options.PageSize); + + if (!string.IsNullOrWhiteSpace(_options.CToken)) + { + builder.Append("&ctoken=").Append(Uri.EscapeDataString(_options.CToken)); + } + + if (!string.IsNullOrWhiteSpace(_options.JsonpCallback)) + { + builder.Append("&_callback=").Append(Uri.EscapeDataString(_options.JsonpCallback)); + } + + builder.Append("&_input_charset=utf-8"); + builder.Append("&_output_charset=utf-8"); + builder.Append("&_=").Append(DateTimeOffset.Now.ToUnixTimeMilliseconds()); + + return new HttpRequestMessage(HttpMethod.Get, builder.ToString()); + } + + private void ApplyDefaultRequestHeaders(HttpRequestMessage request, bool isHtmlPage) + { + request.Headers.TryAddWithoutValidation("User-Agent", + "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36"); + request.Headers.TryAddWithoutValidation("Accept", isHtmlPage + ? "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8" + : "application/json, text/plain, */*"); + request.Headers.TryAddWithoutValidation("Accept-Language", "zh-CN,zh;q=0.9"); + + var referer = _options.BillApiUrl.Contains("consumeprod.alipay.com", StringComparison.OrdinalIgnoreCase) + ? "https://consumeprod.alipay.com/record/advanced.htm" + : "https://mbillexprod.alipay.com/"; + var origin = _options.BillApiUrl.Contains("consumeprod.alipay.com", StringComparison.OrdinalIgnoreCase) + ? "https://consumeprod.alipay.com" + : "https://mbillexprod.alipay.com"; + + request.Headers.TryAddWithoutValidation("Referer", referer); + request.Headers.TryAddWithoutValidation("Origin", origin); + + if (!isHtmlPage) + { + request.Headers.TryAddWithoutValidation("X-Requested-With", "XMLHttpRequest"); + } + } + + private async Task EnsureResponseAndReadAsync(HttpResponseMessage response, CancellationToken cancellationToken) + { + var rawResponseText = await ReadResponseTextSafeAsync(response, cancellationToken); + + if (response.StatusCode == HttpStatusCode.Forbidden || + response.StatusCode == HttpStatusCode.Found || + response.StatusCode == HttpStatusCode.Moved || + response.StatusCode == HttpStatusCode.Redirect) + { + var location = response.Headers.Location?.ToString() ?? string.Empty; + RaiseCookieExpiredAndStop(string.IsNullOrWhiteSpace(location) + ? $"支付宝返回 {(int)response.StatusCode},疑似 Cookie 失效或触发验证。" + : $"支付宝返回 {(int)response.StatusCode},疑似 Cookie 失效或触发验证。Location={location}"); + return rawResponseText; + } + + if (!response.IsSuccessStatusCode) + { + RaiseStatus("Error", $"支付宝账单接口请求失败:HTTP {(int)response.StatusCode},响应:{TrimForLog(rawResponseText)}"); + } + + return rawResponseText; + } + + private static async Task ReadResponseTextSafeAsync(HttpResponseMessage response, CancellationToken cancellationToken) + { + var bytes = await response.Content.ReadAsByteArrayAsync(cancellationToken); + if (bytes.Length == 0) + { + return string.Empty; + } + + var charset = response.Content.Headers.ContentType?.CharSet?.Trim().Trim('"'); + var encoding = TryGetEncoding(charset); + + if (encoding == null && + !string.IsNullOrWhiteSpace(charset) && + charset.Contains("gb", StringComparison.OrdinalIgnoreCase)) + { + encoding = TryGetEncoding("gb18030"); + } + + encoding ??= DetectEncodingFromContent(bytes); + + // 对支付宝中文 HTML,最后兜底优先使用 GB18030,而不是 UTF-8。 + encoding ??= TryGetEncoding("gb18030"); + encoding ??= new UTF8Encoding(false); + + try + { + return encoding.GetString(bytes); + } + catch + { + return Encoding.UTF8.GetString(bytes); + } + } + + private static Encoding? TryGetEncoding(string? charset) + { + if (string.IsNullOrWhiteSpace(charset)) + { + return null; + } + + try + { + return Encoding.GetEncoding(charset); + } + catch + { + return null; + } + } + + private static Encoding? DetectEncodingFromContent(byte[] bytes) + { + try + { + if (bytes.Length >= 3 && + bytes[0] == 0xEF && + bytes[1] == 0xBB && + bytes[2] == 0xBF) + { + return Encoding.UTF8; + } + + var head = Encoding.ASCII.GetString(bytes, 0, Math.Min(bytes.Length, 4096)); + var metaCharset = Regex.Match( + head, + "charset=([a-zA-Z0-9_\\-]+)", + RegexOptions.IgnoreCase); + + if (metaCharset.Success) + { + var charsetName = metaCharset.Groups[1].Value.Trim(); + var detected = TryGetEncoding(charsetName); + if (detected != null) + { + return detected; + } + + if (charsetName.Contains("gb", StringComparison.OrdinalIgnoreCase)) + { + detected = TryGetEncoding("gb18030"); + if (detected != null) + { + return detected; + } + } + } + + // 对中文站点优先尝试 GB18030,而不是直接回退 UTF-8。 + return TryGetEncoding("gb18030") ?? Encoding.UTF8; + } + catch + { + return null; + } + } + + private static bool LooksLikeBillHtml(string text) + { + if (string.IsNullOrWhiteSpace(text)) + { + return false; + } + + return text.Contains("tradeRecordsIndex", StringComparison.OrdinalIgnoreCase) || + text.Contains("table-index-bill", StringComparison.OrdinalIgnoreCase) || + text.Contains("J-item-", StringComparison.OrdinalIgnoreCase); + } + + private HttpRequestMessage BuildEnterpriseBillPostRequest() + { + var now = DateTime.Now; + var begin = now.Date.AddDays(-Math.Max(1, _options.QueryDays - 1)); + var end = now; + + var form = new Dictionary + { + ["pageSize"] = _options.PageSize.ToString(), + ["pageNum"] = "1", + ["channelType"] = "ALL", + ["_input_charset"] = "utf-8", + ["_output_charset"] = "utf-8", + ["beginTime"] = begin.ToString("yyyy-MM-dd 00:00:00"), + ["endTime"] = end.ToString("yyyy-MM-dd HH:mm:ss") + }; + + if (!string.IsNullOrWhiteSpace(_options.CToken)) + { + form["ctoken"] = _options.CToken; + } + + var request = new HttpRequestMessage(HttpMethod.Post, _options.BillApiUrl) + { + Content = new FormUrlEncodedContent(form) + }; + + return request; + } + + /// + /// 根据最新 Cookie 重建 HttpClient。 + /// 必须使用 AllowAutoRedirect = false, + /// 这样当服务器返回 302 时,我们才能第一时间识别出会话异常,而不是被自动跳转“吃掉”。 + /// + private void RecreateHttpClient() + { + _httpClient?.Dispose(); + _httpHandler?.Dispose(); + + if (_cookieContainer == null) + { + throw new InvalidOperationException("CookieContainer 不能为空。"); + } + + _httpHandler = new HttpClientHandler + { + UseCookies = true, + CookieContainer = _cookieContainer, + AllowAutoRedirect = false, + AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate | DecompressionMethods.Brotli + }; + + _httpClient = new HttpClient(_httpHandler) + { + Timeout = TimeSpan.FromSeconds(20) + }; + } + + /// + /// 当检测到 Cookie 失效时: + /// 1. 通知主界面 + /// 2. 自动停止轮询 + /// + private void RaiseCookieExpiredAndStop(string message) + { + RaiseStatus("CookieExpired", message); + Stop(); + } + + private void RaiseStatus(string statusCode, string message, Exception? exception = null) + { + StatusChanged?.Invoke(this, new AlipayStatusChangedEventArgs + { + StatusCode = statusCode, + Message = message, + Exception = exception + }); + } + + private static string TrimForLog(string value, int maxLength = 300) + { + if (string.IsNullOrWhiteSpace(value)) + { + return string.Empty; + } + + return value.Length <= maxLength ? value : value[..maxLength] + "..."; + } + + private static DateTimeOffset TryParseAlipayTime(string text) + { + if (DateTimeOffset.TryParse(text, out var parsed)) + { + return parsed; + } + + return DateTimeOffset.Now; + } + + private int SeedInitialSnapshot(IEnumerable records) + { + var count = 0; + + foreach (var record in records) + { + var orderNo = !string.IsNullOrWhiteSpace(record.TradeNo) + ? record.TradeNo.Trim() + : !string.IsNullOrWhiteSpace(record.OrderNo) + ? record.OrderNo.Trim() + : record.GetFirstNonEmpty("bizInNo", "trade_no", "tradeNo", "order_no", "orderNo", "bizNo", "id", "messageId"); + + if (string.IsNullOrWhiteSpace(orderNo)) + { + continue; + } + + lock (_syncRoot) + { + if (_processedOrderNos.Add(orderNo)) + { + count++; + } + } + } + + return count; + } + + /// + /// 兼容支付宝返回 JSONP 的情况。 + /// 例如:callback({...}) 需要先剥离外层回调壳,才能继续走 JSON 反序列化。 + /// + private void ProcessRecord(AlipayBillRecord record, string rawResponseText) + { + var orderNo = !string.IsNullOrWhiteSpace(record.TradeNo) + ? record.TradeNo.Trim() + : !string.IsNullOrWhiteSpace(record.OrderNo) + ? record.OrderNo.Trim() + : record.GetFirstNonEmpty("bizInNo", "trade_no", "tradeNo", "order_no", "orderNo", "bizNo", "id", "messageId"); + + if (string.IsNullOrWhiteSpace(orderNo)) + { + RaiseStatus("Trace", $"支付宝记录缺少订单号,已跳过。字段预览:{TrimForLog(record.BuildDebugPreview(), 500)}"); + return; + } + + var statusText = !string.IsNullOrWhiteSpace(record.Status) + ? record.Status + : record.GetFirstNonEmpty("status", "tradeStatus", "state"); + + if (!string.IsNullOrWhiteSpace(statusText) && + !statusText.Contains("SUCCESS", StringComparison.OrdinalIgnoreCase) && + !statusText.Contains("交易成功", StringComparison.OrdinalIgnoreCase) && + !statusText.Contains("收款成功", StringComparison.OrdinalIgnoreCase) && + !statusText.Contains("已收款", StringComparison.OrdinalIgnoreCase) && + !statusText.Contains("ok", StringComparison.OrdinalIgnoreCase)) + { + RaiseStatus("Trace", $"支付宝记录状态非成功,已跳过。orderNo={orderNo},status={statusText}"); + return; + } + + bool isNew; + lock (_syncRoot) + { + isNew = _processedOrderNos.Add(orderNo); + } + + if (!isNew) + { + RaiseStatus("Trace", $"支付宝记录重复,已跳过。orderNo={orderNo}"); + return; + } + + var amount = record.Amount != 0 ? record.Amount : record.TryGetAmountFromExtra(); + if (amount <= 0) + { + RaiseStatus("Trace", $"支付宝记录金额非收入,已跳过。orderNo={orderNo},amount={amount:0.00}"); + return; + } + + var remark = !string.IsNullOrWhiteSpace(record.Remark) + ? record.Remark + : record.GetFirstNonEmpty("remark", "content", "title", "mainDesc", "desc", "memo"); + var payer = !string.IsNullOrWhiteSpace(record.PayerName) + ? record.PayerName + : record.GetFirstNonEmpty("payerName", "payer", "userName", "nickName", "fromUserName", "oppositeName"); + var timeText = !string.IsNullOrWhiteSpace(record.GmtCreate) + ? record.GmtCreate + : record.GetFirstNonEmpty("gmtCreate", "createTime", "messageTime", "time", "payTime"); + var paidAt = TryParseAlipayTime(timeText); + + RaiseStatus("Trace", $"支付宝发现新收款:orderNo={orderNo},amount={amount:0.00},remark={TrimForLog(remark, 80)}"); + + PaymentDetected?.Invoke(this, new AlipayPaymentDetectedEventArgs + { + OrderNo = orderNo, + Amount = amount, + Remark = remark, + PaidAt = paidAt, + Payer = payer, + RawJson = rawResponseText + }); + } + + private bool TryReadRecordsFromHtml(string html, out List records) + { + records = new List(); + if (string.IsNullOrWhiteSpace(html)) + { + return false; + } + + if (!html.Contains("tradeRecordsIndex", StringComparison.OrdinalIgnoreCase) && + !html.Contains("table-index-bill", StringComparison.OrdinalIgnoreCase) && + !html.Contains("ui-record-table", StringComparison.OrdinalIgnoreCase)) + { + return false; + } + + var normalized = Regex.Replace(html, "", string.Empty, RegexOptions.IgnoreCase); + normalized = Regex.Replace(normalized, "", string.Empty, RegexOptions.IgnoreCase); + normalized = WebUtility.HtmlDecode(normalized); + + var rowMatches = Regex.Matches( + normalized, + "]*>([\\s\\S]*?)", + RegexOptions.IgnoreCase); + + foreach (Match rowMatch in rowMatches) + { + var rowHtml = rowMatch.Value; + + if (!rowHtml.Contains("tradeNo", StringComparison.OrdinalIgnoreCase) && + !rowHtml.Contains("amount", StringComparison.OrdinalIgnoreCase) && + !rowHtml.Contains("status", StringComparison.OrdinalIgnoreCase) && + !rowHtml.Contains("J-item-", StringComparison.OrdinalIgnoreCase)) + { + continue; + } + + var timeCell = ExtractCellByClass(rowHtml, "time"); + var nameCell = ExtractCellByClass(rowHtml, "name"); + var tradeNoCell = ExtractCellByClass(rowHtml, "tradeNo"); + var otherCell = ExtractCellByClass(rowHtml, "other"); + var amountCell = ExtractCellByClass(rowHtml, "amount"); + var statusCell = ExtractCellByClass(rowHtml, "status"); + + var timeText = NormalizePlainText(timeCell); + var nameText = NormalizePlainText(nameCell); + var tradeNoText = NormalizePlainText(tradeNoCell); + var otherText = NormalizePlainText(otherCell); + var amountText = NormalizePlainText(amountCell); + var statusText = NormalizePlainText(statusCell); + + var orderNo = TryMatchGroup(tradeNoText, "订单号[::]\\s*([0-9A-Za-z]{10,64})"); + var tradeNo = TryMatchGroup(tradeNoText, "交易号[::]\\s*([0-9A-Za-z]{10,64})"); + var bizNo = TryMatchGroup(tradeNoText, "流水号[::]\\s*([0-9A-Za-z]{10,64})"); + var fallbackNo = ExtractPossibleTradeNo(tradeNoText, rowHtml); + + var primaryNo = !string.IsNullOrWhiteSpace(tradeNo) + ? tradeNo + : !string.IsNullOrWhiteSpace(orderNo) + ? orderNo + : !string.IsNullOrWhiteSpace(bizNo) + ? bizNo + : fallbackNo; + + if (string.IsNullOrWhiteSpace(primaryNo)) + { + continue; + } + + var amount = ParseAlipayAmount(amountText, rowHtml); + if (amount == 0m) + { + continue; + } + + var paidAtText = NormalizeAlipayHtmlTime(timeText); + var remark = string.IsNullOrWhiteSpace(nameText) + ? (string.IsNullOrWhiteSpace(tradeNoText) ? NormalizePlainText(rowHtml) : tradeNoText) + : nameText; + var payer = otherText; + + var record = new AlipayBillRecord + { + TradeNo = !string.IsNullOrWhiteSpace(tradeNo) ? tradeNo : primaryNo, + OrderNo = !string.IsNullOrWhiteSpace(orderNo) ? orderNo : (!string.IsNullOrWhiteSpace(bizNo) ? bizNo : primaryNo), + Amount = amount, + Remark = remark, + PayerName = payer, + Status = statusText, + GmtCreate = paidAtText + }; + + records.Add(record); + } + + return records.Count > 0; + } + + private static string ExtractCellByClass(string rowHtml, string className) + { + if (string.IsNullOrWhiteSpace(rowHtml) || string.IsNullOrWhiteSpace(className)) + { + return string.Empty; + } + + var pattern = $"]*class=\"[^\"]*\\b{Regex.Escape(className)}\\b[^\"]*\"[^>]*>([\\s\\S]*?)"; + var match = Regex.Match(rowHtml, pattern, RegexOptions.IgnoreCase); + if (match.Success) + { + return match.Groups[1].Value; + } + + pattern = $"]*data-role=\"[^\"]*\\b{Regex.Escape(className)}\\b[^\"]*\"[^>]*>([\\s\\S]*?)"; + match = Regex.Match(rowHtml, pattern, RegexOptions.IgnoreCase); + return match.Success ? match.Groups[1].Value : string.Empty; + } + + private static string NormalizePlainText(string htmlFragment) + { + if (string.IsNullOrWhiteSpace(htmlFragment)) + { + return string.Empty; + } + + var text = Regex.Replace(htmlFragment, "", " ", RegexOptions.IgnoreCase); + text = Regex.Replace(text, "<[^>]+>", " "); + text = WebUtility.HtmlDecode(text); + text = Regex.Replace(text, "\\s+", " ").Trim(); + return text; + } + + private static string TryMatchGroup(string text, string pattern) + { + if (string.IsNullOrWhiteSpace(text)) + { + return string.Empty; + } + + var match = Regex.Match(text, pattern, RegexOptions.IgnoreCase); + return match.Success ? match.Groups[1].Value.Trim() : string.Empty; + } + + private static string NormalizeAlipayHtmlTime(string text) + { + if (string.IsNullOrWhiteSpace(text)) + { + return string.Empty; + } + + var match = Regex.Match(text, "(20\\d{2})\\.(\\d{2})\\.(\\d{2})\\s+(\\d{2}:\\d{2})(?::(\\d{2}))?", RegexOptions.IgnoreCase); + if (match.Success) + { + var second = match.Groups[5].Success ? match.Groups[5].Value : "00"; + return $"{match.Groups[1].Value}-{match.Groups[2].Value}-{match.Groups[3].Value} {match.Groups[4].Value}:{second}"; + } + + match = Regex.Match(text, "(20\\d{2})-(\\d{2})-(\\d{2})\\s+(\\d{2}:\\d{2})(?::(\\d{2}))?", RegexOptions.IgnoreCase); + if (match.Success) + { + var second = match.Groups[5].Success ? match.Groups[5].Value : "00"; + return $"{match.Groups[1].Value}-{match.Groups[2].Value}-{match.Groups[3].Value} {match.Groups[4].Value}:{second}"; + } + + return text; + } + + private static string ExtractPossibleTradeNo(string tradeNoText, string rowHtml) + { + var directMatch = Regex.Match( + tradeNoText, + "(?]+([0-9A-Za-z]{16,64})", + RegexOptions.IgnoreCase); + if (htmlMatch.Success) + { + return htmlMatch.Groups[1].Value.Trim(); + } + + return string.Empty; + } + + private static decimal ParseAlipayAmount(string amountText, string rowHtml) + { + if (string.IsNullOrWhiteSpace(amountText)) + { + amountText = NormalizePlainText(rowHtml); + } + + var normalized = amountText + .Replace("¥", string.Empty) + .Replace("¥", string.Empty) + .Replace(",", string.Empty) + .Trim(); + + var amountMatch = Regex.Match(normalized, "([+-]?)\\s*([0-9]+(?:\\.[0-9]{1,2})?)", RegexOptions.IgnoreCase); + if (!amountMatch.Success) + { + return 0m; + } + + if (!decimal.TryParse(amountMatch.Groups[2].Value, out var amount)) + { + return 0m; + } + + var sign = amountMatch.Groups[1].Value; + var text = $"{amountText} {rowHtml}"; + + if (sign == "-" || text.Contains("支出", StringComparison.OrdinalIgnoreCase)) + { + return -amount; + } + + return amount; + } + + private bool TryReadRecordsFromRoot(string json, out List? records) + { + records = null; + + try + { + using var doc = JsonDocument.Parse(json); + var root = doc.RootElement; + + foreach (var key in new[] { "records", "list", "tradeList", "result", "items" }) + { + if (!root.TryGetProperty(key, out var node)) + { + continue; + } + + if (node.ValueKind == JsonValueKind.Array) + { + records = JsonSerializer.Deserialize>(node.GetRawText(), _jsonOptions) ?? new List(); + return true; + } + + if (node.ValueKind == JsonValueKind.Object) + { + foreach (var nestedKey in new[] { "records", "list", "tradeList", "items" }) + { + if (!node.TryGetProperty(nestedKey, out var nestedNode) || nestedNode.ValueKind != JsonValueKind.Array) + { + continue; + } + + records = JsonSerializer.Deserialize>(nestedNode.GetRawText(), _jsonOptions) ?? new List(); + return true; + } + } + } + } + catch + { + } + + return false; + } + + private static string TryExtractJsonFromJsonp(string text) + { + if (string.IsNullOrWhiteSpace(text)) + { + return text; + } + + var trimmed = text.Trim(); + + if ((trimmed.StartsWith("{") && trimmed.EndsWith("}")) || + (trimmed.StartsWith("[") && trimmed.EndsWith("]"))) + { + return trimmed; + } + + // 支付宝这类接口常见返回格式: + // /**/callback({...}) + // 或 callback({...}) + // 因此前面先容忍注释前缀,再提取括号内 JSON。 + var match = Regex.Match( + trimmed, + @"^(?:/\*\*/\s*)?[a-zA-Z0-9_\$]+\((.*)\)\s*;?\s*$", + RegexOptions.Singleline); + + if (match.Success) + { + return match.Groups[1].Value.Trim(); + } + + return trimmed; + } + + public void Dispose() + { + if (_disposed) + { + return; + } + + Stop(); + _httpClient?.Dispose(); + _httpHandler?.Dispose(); + _disposed = true; + } +} + +/// +/// 支付宝 WebView2 登录窗口。 +/// 用于让用户扫码登录支付宝网页版,并在登录成功后自动提取 Cookie。 +/// +public sealed class AlipayLoginForm : Form +{ + private readonly AlipayMonitorOptions _options; + private readonly WebView2 _webView; + private readonly Label _statusLabel; + private string _detectedCtoken = string.Empty; + private bool _loginEventRaised; + private bool _navigatedToBillPage; + private bool _waitingSecurityVerify; + + /// + /// 当检测到登录成功并提取到 Cookie 后触发。 + /// + public event EventHandler? LoginSucceeded; + + /// + /// 当登录页发生异常时触发。 + /// + public event EventHandler? StatusChanged; + + public AlipayLoginForm(AlipayMonitorOptions options) + { + _options = options ?? throw new ArgumentNullException(nameof(options)); + + Text = "支付宝扫码登录"; + StartPosition = FormStartPosition.CenterParent; + Width = 1100; + Height = 760; + + _statusLabel = new Label + { + Dock = DockStyle.Top, + Height = 36, + Text = "正在初始化支付宝登录页,请稍候……", + TextAlign = ContentAlignment.MiddleLeft, + Padding = new Padding(12, 0, 0, 0) + }; + + _webView = new WebView2 + { + Dock = DockStyle.Fill + }; + + Controls.Add(_webView); + Controls.Add(_statusLabel); + + Load += AlipayLoginForm_Load; + FormClosed += AlipayLoginForm_FormClosed; + } + + private async void AlipayLoginForm_Load(object? sender, EventArgs e) + { + try + { + await _webView.EnsureCoreWebView2Async(); + + _webView.CoreWebView2.Settings.IsStatusBarEnabled = false; + _webView.CoreWebView2.Settings.AreDevToolsEnabled = true; + _webView.CoreWebView2.Settings.IsZoomControlEnabled = true; + + _webView.CoreWebView2.NavigationCompleted += CoreWebView2_NavigationCompleted; + _webView.CoreWebView2.DOMContentLoaded += CoreWebView2_DOMContentLoaded; + _webView.CoreWebView2.WebResourceRequested += CoreWebView2_WebResourceRequested; + + _statusLabel.Text = "请使用支付宝扫码登录。"; + _webView.CoreWebView2.Navigate(_options.LoginUrl); + } + catch (Exception ex) + { + StatusChanged?.Invoke(this, new AlipayStatusChangedEventArgs + { + StatusCode = "Error", + Message = $"初始化支付宝登录窗口失败:{ex.Message}", + Exception = ex + }); + } + } + + private void AlipayLoginForm_FormClosed(object? sender, FormClosedEventArgs e) + { + if (_webView.CoreWebView2 != null) + { + _webView.CoreWebView2.NavigationCompleted -= CoreWebView2_NavigationCompleted; + _webView.CoreWebView2.DOMContentLoaded -= CoreWebView2_DOMContentLoaded; + _webView.CoreWebView2.WebResourceRequested -= CoreWebView2_WebResourceRequested; + } + + _webView.Dispose(); + } + + private void CoreWebView2_WebResourceRequested(object? sender, CoreWebView2WebResourceRequestedEventArgs e) + { + try + { + var url = e.Request.Uri ?? string.Empty; + if (string.IsNullOrWhiteSpace(url)) + { + return; + } + + if (url.Contains("ctoken=", StringComparison.OrdinalIgnoreCase) || + url.Contains("advanced.htm", StringComparison.OrdinalIgnoreCase) || + url.Contains("getMsgInfosNew.json", StringComparison.OrdinalIgnoreCase) || + url.Contains("/web/bi.do", StringComparison.OrdinalIgnoreCase) || + url.Contains("/record/", StringComparison.OrdinalIgnoreCase)) + { + if (Uri.TryCreate(url, UriKind.Absolute, out var uri)) + { + var ctoken = TryGetQueryParameter(uri.Query, "ctoken"); + if (!string.IsNullOrWhiteSpace(ctoken)) + { + _detectedCtoken = ctoken.Trim(); + _statusLabel.Text = $"已捕获支付宝请求信号,ctoken={_detectedCtoken}"; + } + } + } + } + catch + { + } + } + + /// + /// 通过 URL 跳转初步判断“是否已经登录成功”。 + /// 注意:不同版本支付宝网页版,登录成功后的 URL 可能不同, + /// 这里建议你在实测时打印 URL,并按真实情况补充判定规则。 + /// + private async void CoreWebView2_NavigationCompleted(object? sender, CoreWebView2NavigationCompletedEventArgs e) + { + if (!e.IsSuccess || _webView.CoreWebView2 == null) + { + return; + } + + var currentUrl = _webView.Source?.AbsoluteUri ?? string.Empty; + _statusLabel.Text = $"当前页面:{currentUrl}"; + + if (IsSecurityVerifyUrl(currentUrl)) + { + _waitingSecurityVerify = true; + _statusLabel.Text = "支付宝触发安全校验,请在当前页面完成验证,完成后程序会自动继续。"; + StatusChanged?.Invoke(this, new AlipayStatusChangedEventArgs + { + StatusCode = "SecurityVerify", + Message = "支付宝触发安全校验,请在登录窗口内完成验证。" + }); + return; + } + + if (IsBillReadyUrl(currentUrl)) + { + _waitingSecurityVerify = false; + await TryExtractCookiesAndRaiseAsync(currentUrl); + return; + } + + if (LooksLikeLoginSuccessUrl(currentUrl)) + { + if (await TryNavigateToBillPageBeforeExtractAsync(currentUrl)) + { + return; + } + } + } + + /// + /// 通过 DOM 元素辅助判断登录成功。 + /// 某些站点不会明显跳转 URL,但会在登录后渲染“账单/交易记录/退出”等元素。 + /// 这里给出一个执行 JS 检测页面文本的示例。 + /// + private async void CoreWebView2_DOMContentLoaded(object? sender, CoreWebView2DOMContentLoadedEventArgs e) + { + if (_loginEventRaised || _webView.CoreWebView2 == null || IsDisposed) + { + return; + } + + try + { + var core = _webView.CoreWebView2; + if (core == null) + { + return; + } + + var script = """ + (() => { + const text = document.body ? document.body.innerText : ""; + const title = document.title || ""; + return JSON.stringify({ + title, + hasBillKeyword: text.includes("账单") || text.includes("交易记录") || text.includes("收支明细"), + hasLogoutKeyword: text.includes("退出") || text.includes("安全设置"), + location: location.href + }); + })(); + """; + + var result = await core.ExecuteScriptAsync(script); + if (string.IsNullOrWhiteSpace(result)) + { + return; + } + + var json = JsonSerializer.Deserialize(result); + if (string.IsNullOrWhiteSpace(json)) + { + return; + } + + using var doc = JsonDocument.Parse(json); + var root = doc.RootElement; + + var hasBillKeyword = root.TryGetProperty("hasBillKeyword", out var billProp) && billProp.GetBoolean(); + var hasLogoutKeyword = root.TryGetProperty("hasLogoutKeyword", out var logoutProp) && logoutProp.GetBoolean(); + var currentUrl = root.TryGetProperty("location", out var urlProp) ? urlProp.GetString() ?? string.Empty : string.Empty; + + if (IsSecurityVerifyUrl(currentUrl)) + { + _waitingSecurityVerify = true; + _statusLabel.Text = "支付宝触发安全校验,请在当前页面完成验证,完成后程序会自动继续。"; + return; + } + + if (IsBillReadyUrl(currentUrl)) + { + _waitingSecurityVerify = false; + await TryExtractCookiesAndRaiseAsync(currentUrl); + return; + } + + if (hasBillKeyword || hasLogoutKeyword) + { + if (await TryNavigateToBillPageBeforeExtractAsync(currentUrl)) + { + return; + } + } + } + catch (Exception ex) + { + StatusChanged?.Invoke(this, new AlipayStatusChangedEventArgs + { + StatusCode = "Warn", + Message = $"DOM 登录检测异常:{ex.Message}", + Exception = ex + }); + } + } + + private async Task TryNavigateToBillPageBeforeExtractAsync(string currentUrl) + { + if (_webView.CoreWebView2 == null || _navigatedToBillPage) + { + return false; + } + + if (IsBillReadyUrl(currentUrl) || IsSecurityVerifyUrl(currentUrl)) + { + return false; + } + + var billUrl = BuildBillEntryUrl(); + _navigatedToBillPage = true; + _statusLabel.Text = "登录成功,正在自动跳转账单页以补齐会话 Cookie……"; + await Task.Delay(800); + + if (_webView.CoreWebView2 == null || IsDisposed) + { + return false; + } + + _webView.CoreWebView2.Navigate(billUrl); + return true; + } + + /// + /// 登录成功后提取全部 Cookie,并转换为 HttpClient 可用的 CookieContainer。 + /// + private async Task TryExtractCookiesAndRaiseAsync(string currentUrl) + { + if (_loginEventRaised || _webView.CoreWebView2 == null || IsDisposed) + { + return; + } + + if (!IsBillReadyUrl(currentUrl)) + { + if (await TryNavigateToBillPageBeforeExtractAsync(currentUrl)) + { + return; + } + + return; + } + + _loginEventRaised = true; + + try + { + _statusLabel.Text = "检测到已进入支付宝账单页,正在提取 Cookie……"; + + // null 表示取当前 WebView 所有站点 Cookie。 + var cookies = await _webView.CoreWebView2.CookieManager.GetCookiesAsync(null); + var cookieContainer = WebView2CookieHelper.ConvertToCookieContainer(cookies); + var ctoken = ResolveCtoken(currentUrl, cookies); + + LoginSucceeded?.Invoke(this, new AlipayLoginSucceededEventArgs + { + Cookies = cookies, + CookieContainer = cookieContainer, + CToken = ctoken, + CurrentUrl = currentUrl + }); + + _statusLabel.Text = string.IsNullOrWhiteSpace(ctoken) + ? "Cookie 提取成功,可关闭窗口。" + : $"Cookie 与 ctoken 提取成功,可关闭窗口。ctoken={ctoken}"; + } + catch (Exception ex) + { + _loginEventRaised = false; + StatusChanged?.Invoke(this, new AlipayStatusChangedEventArgs + { + StatusCode = "Error", + Message = $"提取 Cookie 失败:{ex.Message}", + Exception = ex + }); + } + } + + private string BuildBillEntryUrl() + { + var url = _options.BillApiUrl; + if (!string.IsNullOrWhiteSpace(_detectedCtoken) && + !url.Contains("ctoken=", StringComparison.OrdinalIgnoreCase)) + { + url += (url.Contains('?') ? "&" : "?") + "ctoken=" + Uri.EscapeDataString(_detectedCtoken); + } + + return url; + } + + /// + /// 判断当前 URL 是否疑似登录成功。 + /// 真实项目里请把你抓到的“登录后页面 URL 特征”补充到这里。 + /// + private string ResolveCtoken(string currentUrl, IReadOnlyList cookies) + { + if (Uri.TryCreate(currentUrl, UriKind.Absolute, out var uri)) + { + var byUrl = TryGetQueryParameter(uri.Query, "ctoken"); + if (!string.IsNullOrWhiteSpace(byUrl)) + { + return byUrl.Trim(); + } + } + + if (!string.IsNullOrWhiteSpace(_detectedCtoken)) + { + return _detectedCtoken.Trim(); + } + + foreach (var cookie in cookies) + { + if (string.Equals(cookie.Name, "ctoken", StringComparison.OrdinalIgnoreCase) || + string.Equals(cookie.Name, "_CHIPS-ctoken", StringComparison.OrdinalIgnoreCase)) + { + if (!string.IsNullOrWhiteSpace(cookie.Value)) + { + return cookie.Value.Trim(); + } + } + } + + return string.Empty; + } + + private static string? TryGetQueryParameter(string query, string key) + { + if (string.IsNullOrWhiteSpace(query)) + { + return null; + } + + var trimmed = query.TrimStart('?'); + var parts = trimmed.Split('&', StringSplitOptions.RemoveEmptyEntries); + foreach (var part in parts) + { + var kv = part.Split('=', 2); + if (kv.Length == 0) + { + continue; + } + + if (!string.Equals(Uri.UnescapeDataString(kv[0]), key, StringComparison.OrdinalIgnoreCase)) + { + continue; + } + + return kv.Length > 1 ? Uri.UnescapeDataString(kv[1]) : string.Empty; + } + + return null; + } + + private static bool LooksLikeLoginSuccessUrl(string url) + { + if (string.IsNullOrWhiteSpace(url)) + { + return false; + } + + return url.Contains("my.alipay.com", StringComparison.OrdinalIgnoreCase) || + url.Contains("lab.alipay.com", StringComparison.OrdinalIgnoreCase) || + url.Contains("mbillexprod.alipay.com", StringComparison.OrdinalIgnoreCase) || + url.Contains("consumeprod.alipay.com", StringComparison.OrdinalIgnoreCase) || + url.Contains("getMsgInfosNew.json", StringComparison.OrdinalIgnoreCase) || + url.Contains("bill", StringComparison.OrdinalIgnoreCase) || + url.Contains("trade", StringComparison.OrdinalIgnoreCase); + } + + private static bool IsBillReadyUrl(string url) + { + if (string.IsNullOrWhiteSpace(url)) + { + return false; + } + + return url.Contains("consumeprod.alipay.com/record/advanced.htm", StringComparison.OrdinalIgnoreCase); + } + + private static bool IsSecurityVerifyUrl(string url) + { + if (string.IsNullOrWhiteSpace(url)) + { + return false; + } + + return url.Contains("consumeprod.alipay.com/record/checkSecurity.htm", StringComparison.OrdinalIgnoreCase) || + url.Contains("checkSecurity", StringComparison.OrdinalIgnoreCase) || + url.Contains("securityId=", StringComparison.OrdinalIgnoreCase); + } +} + +/// +/// WebView2 Cookie 帮助类。 +/// 负责把 WebView2 Cookie 列表转换为 HttpClient 可直接使用的 CookieContainer。 +/// +public static class WebView2CookieHelper +{ + /// + /// 将 WebView2 返回的 Cookie 列表转换为 CookieContainer。 + /// 这是“浏览器登录态 -> HttpClient 轮询态”最关键的一步。 + /// + public static CookieContainer ConvertToCookieContainer(IEnumerable cookies) + { + var container = new CookieContainer(); + + foreach (var item in cookies) + { + try + { + if (string.IsNullOrWhiteSpace(item.Name) || + string.IsNullOrWhiteSpace(item.Domain)) + { + continue; + } + + var domain = NormalizeCookieDomain(item.Domain); + var path = string.IsNullOrWhiteSpace(item.Path) ? "/" : item.Path; + + var cookie = new Cookie(item.Name, item.Value, path, domain) + { + HttpOnly = item.IsHttpOnly, + Secure = item.IsSecure + }; + + // WebView2 Cookie 的 Expires 若未设置,通常会给出 MinValue 或异常值。 + // 此处做保护处理,避免 .NET Cookie 因非法时间报错。 + if (item.Expires > DateTime.MinValue.AddYears(1)) + { + cookie.Expires = item.Expires; + } + + container.Add(cookie); + } + catch + { + // 某些特殊 Cookie 域名格式可能不被 .NET Cookie 接受,直接跳过即可。 + } + } + + return container; + } + + /// + /// 规范化 Cookie 域名。 + /// 例如把 ".alipay.com" 转成 "alipay.com",以兼容 CookieContainer.Add。 + /// + private static string NormalizeCookieDomain(string domain) + { + var value = domain.Trim(); + while (value.StartsWith('.')) + { + value = value[1..]; + } + + return value; + } +} diff --git a/Form1.Designer.cs b/Form1.Designer.cs index c683924..4c783b8 100644 --- a/Form1.Designer.cs +++ b/Form1.Designer.cs @@ -77,11 +77,14 @@ namespace Vmianqian 订单状态 = new DataGridViewTextBoxColumn(); dataGridViewTextBoxColumn5 = new DataGridViewTextBoxColumn(); alipayConfigCard = new System.Windows.Forms.Panel(); + btnAlipayStop = new AntdUI.Button(); + btnAlipayStart = new AntdUI.Button(); + btnAlipayLogin = new AntdUI.Button(); + txtAliPid = new Input(); + txtAliAppId = new Input(); + txtAliPath = new Input(); numAlipayInterval = new NumericUpDown(); lblAlipayDesc = new AntdUI.Label(); - txtAliPath = new Input(); - txtAliAppId = new Input(); - txtAliPid = new Input(); alipayLogCard = new System.Windows.Forms.Panel(); gridAlipayLogs = new DataGridView(); dataGridViewTextBoxColumn6 = new DataGridViewTextBoxColumn(); @@ -113,10 +116,10 @@ namespace Vmianqian buttonCollapse = new AntdUI.Button(); menu = new AntdUI.Menu(); contentHost = new System.Windows.Forms.Panel(); - pageHome = new System.Windows.Forms.Panel(); - pageSettings = new System.Windows.Forms.Panel(); pageAlipay = new System.Windows.Forms.Panel(); pageWechat = new System.Windows.Forms.Panel(); + pageHome = new System.Windows.Forms.Panel(); + pageSettings = new System.Windows.Forms.Panel(); homeSummaryCard.SuspendLayout(); homeConfigCard.SuspendLayout(); homeMemberCard.SuspendLayout(); @@ -134,10 +137,10 @@ namespace Vmianqian titlebar.SuspendLayout(); bottomBar.SuspendLayout(); contentHost.SuspendLayout(); - pageHome.SuspendLayout(); - pageSettings.SuspendLayout(); pageAlipay.SuspendLayout(); pageWechat.SuspendLayout(); + pageHome.SuspendLayout(); + pageSettings.SuspendLayout(); SuspendLayout(); // // homeSummaryCard @@ -556,26 +559,86 @@ namespace Vmianqian // alipayConfigCard.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right; alipayConfigCard.BackColor = Color.White; + alipayConfigCard.Controls.Add(btnAlipayStop); + alipayConfigCard.Controls.Add(btnAlipayStart); + alipayConfigCard.Controls.Add(btnAlipayLogin); + alipayConfigCard.Controls.Add(txtAliPid); + alipayConfigCard.Controls.Add(txtAliAppId); + alipayConfigCard.Controls.Add(txtAliPath); alipayConfigCard.Controls.Add(numAlipayInterval); alipayConfigCard.Controls.Add(lblAlipayDesc); - alipayConfigCard.Controls.Add(txtAliPath); - alipayConfigCard.Controls.Add(txtAliAppId); - alipayConfigCard.Controls.Add(txtAliPid); alipayConfigCard.Location = new Point(23, 24); alipayConfigCard.Name = "alipayConfigCard"; alipayConfigCard.Size = new Size(962, 131); alipayConfigCard.TabIndex = 1; alipayConfigCard.Tag = "alipay-config"; // + // btnAlipayStop + // + btnAlipayStop.Location = new Point(-5000, -5000); + btnAlipayStop.Name = "btnAlipayStop"; + btnAlipayStop.Size = new Size(96, 40); + btnAlipayStop.TabIndex = 0; + btnAlipayStop.Text = "停止监听"; + btnAlipayStop.Type = TTypeMini.Error; + btnAlipayStop.Visible = false; + btnAlipayStop.Click += btnAlipayStop_Click; + // + // btnAlipayStart + // + btnAlipayStart.Location = new Point(-5000, -5000); + btnAlipayStart.Name = "btnAlipayStart"; + btnAlipayStart.Size = new Size(110, 40); + btnAlipayStart.TabIndex = 1; + btnAlipayStart.Text = "开始监听"; + btnAlipayStart.Type = TTypeMini.Primary; + btnAlipayStart.Visible = false; + btnAlipayStart.Click += btnAlipayStart_Click; + // + // btnAlipayLogin + // + btnAlipayLogin.Location = new Point(25, 24); + btnAlipayLogin.Name = "btnAlipayLogin"; + btnAlipayLogin.Size = new Size(112, 40); + btnAlipayLogin.TabIndex = 2; + btnAlipayLogin.Text = "扫码登录"; + btnAlipayLogin.Type = TTypeMini.Primary; + btnAlipayLogin.Click += btnAlipayLogin_Click; + // + // txtAliPid + // + txtAliPid.Location = new Point(-5000, -5000); + txtAliPid.Name = "txtAliPid"; + txtAliPid.Size = new Size(120, 40); + txtAliPid.TabIndex = 3; + txtAliPid.Visible = false; + // + // txtAliAppId + // + txtAliAppId.Location = new Point(-5000, -5000); + txtAliAppId.Name = "txtAliAppId"; + txtAliAppId.Size = new Size(120, 40); + txtAliAppId.TabIndex = 4; + txtAliAppId.Visible = false; + // + // txtAliPath + // + txtAliPath.Location = new Point(-5000, -5000); + txtAliPath.Name = "txtAliPath"; + txtAliPath.Size = new Size(220, 40); + txtAliPath.TabIndex = 5; + txtAliPath.Visible = false; + // // numAlipayInterval // - numAlipayInterval.Location = new Point(687, 35); - numAlipayInterval.Maximum = new decimal(new int[] { 3600, 0, 0, 0 }); - numAlipayInterval.Minimum = new decimal(new int[] { 1, 0, 0, 0 }); + numAlipayInterval.Location = new Point(-5000, -5000); + numAlipayInterval.Maximum = new decimal(new int[] { 35, 0, 0, 0 }); + numAlipayInterval.Minimum = new decimal(new int[] { 15, 0, 0, 0 }); numAlipayInterval.Name = "numAlipayInterval"; numAlipayInterval.Size = new Size(61, 23); - numAlipayInterval.TabIndex = 0; - numAlipayInterval.Value = new decimal(new int[] { 5, 0, 0, 0 }); + numAlipayInterval.TabIndex = 6; + numAlipayInterval.Value = new decimal(new int[] { 15, 0, 0, 0 }); + numAlipayInterval.Visible = false; // // lblAlipayDesc // @@ -583,32 +646,8 @@ namespace Vmianqian lblAlipayDesc.Location = new Point(25, 80); lblAlipayDesc.Name = "lblAlipayDesc"; lblAlipayDesc.Size = new Size(890, 33); - lblAlipayDesc.TabIndex = 1; - lblAlipayDesc.Text = "后续这里接入支付宝真实到账监听逻辑,目前保留参数配置与回调结果展示。"; - // - // txtAliPath - // - txtAliPath.Location = new Point(25, 24); - txtAliPath.Name = "txtAliPath"; - txtAliPath.PlaceholderText = "程序路径"; - txtAliPath.Size = new Size(272, 40); - txtAliPath.TabIndex = 1; - // - // txtAliAppId - // - txtAliAppId.Location = new Point(319, 24); - txtAliAppId.Name = "txtAliAppId"; - txtAliAppId.PlaceholderText = "AppId"; - txtAliAppId.Size = new Size(154, 40); - txtAliAppId.TabIndex = 2; - // - // txtAliPid - // - txtAliPid.Location = new Point(500, 24); - txtAliPid.Name = "txtAliPid"; - txtAliPid.PlaceholderText = "Pid/UserId"; - txtAliPid.Size = new Size(154, 40); - txtAliPid.TabIndex = 3; + lblAlipayDesc.TabIndex = 7; + lblAlipayDesc.Text = "流程:点击上方扫码登录后,在内嵌浏览器完成支付宝登录;登录成功后系统立即开始后台监听。"; // // alipayLogCard // @@ -938,16 +977,41 @@ namespace Vmianqian // contentHost // contentHost.BackColor = Color.White; - contentHost.Controls.Add(pageHome); - contentHost.Controls.Add(pageSettings); contentHost.Controls.Add(pageAlipay); contentHost.Controls.Add(pageWechat); + contentHost.Controls.Add(pageHome); + contentHost.Controls.Add(pageSettings); contentHost.Dock = DockStyle.Fill; contentHost.Location = new Point(192, 44); contentHost.Name = "contentHost"; contentHost.Size = new Size(1008, 916); contentHost.TabIndex = 0; // + // pageAlipay + // + pageAlipay.AutoScroll = true; + pageAlipay.BackColor = Color.FromArgb(245, 247, 250); + pageAlipay.Controls.Add(alipayConfigCard); + pageAlipay.Controls.Add(alipayLogCard); + pageAlipay.Dock = DockStyle.Fill; + pageAlipay.Location = new Point(0, 0); + pageAlipay.Name = "pageAlipay"; + pageAlipay.Size = new Size(1008, 916); + pageAlipay.TabIndex = 1; + // + // pageWechat + // + pageWechat.AutoScroll = true; + pageWechat.BackColor = Color.FromArgb(245, 247, 250); + pageWechat.Controls.Add(wechatHookCard); + pageWechat.Controls.Add(wechatProtocolCard); + pageWechat.Controls.Add(wechatLogCard); + pageWechat.Dock = DockStyle.Fill; + pageWechat.Location = new Point(0, 0); + pageWechat.Name = "pageWechat"; + pageWechat.Size = new Size(1008, 916); + pageWechat.TabIndex = 2; + // // pageHome // pageHome.AutoScroll = true; @@ -975,31 +1039,6 @@ namespace Vmianqian pageSettings.Size = new Size(1008, 916); pageSettings.TabIndex = 0; // - // pageAlipay - // - pageAlipay.AutoScroll = true; - pageAlipay.BackColor = Color.FromArgb(245, 247, 250); - pageAlipay.Controls.Add(alipayConfigCard); - pageAlipay.Controls.Add(alipayLogCard); - pageAlipay.Dock = DockStyle.Fill; - pageAlipay.Location = new Point(0, 0); - pageAlipay.Name = "pageAlipay"; - pageAlipay.Size = new Size(1008, 916); - pageAlipay.TabIndex = 1; - // - // pageWechat - // - pageWechat.AutoScroll = true; - pageWechat.BackColor = Color.FromArgb(245, 247, 250); - pageWechat.Controls.Add(wechatHookCard); - pageWechat.Controls.Add(wechatProtocolCard); - pageWechat.Controls.Add(wechatLogCard); - pageWechat.Dock = DockStyle.Fill; - pageWechat.Location = new Point(0, 0); - pageWechat.Name = "pageWechat"; - pageWechat.Size = new Size(1008, 916); - pageWechat.TabIndex = 2; - // // Form1 // AutoScaleDimensions = new SizeF(7F, 17F); @@ -1040,10 +1079,10 @@ namespace Vmianqian titlebar.ResumeLayout(false); bottomBar.ResumeLayout(false); contentHost.ResumeLayout(false); - pageHome.ResumeLayout(false); - pageSettings.ResumeLayout(false); pageAlipay.ResumeLayout(false); pageWechat.ResumeLayout(false); + pageHome.ResumeLayout(false); + pageSettings.ResumeLayout(false); ResumeLayout(false); } @@ -1055,6 +1094,13 @@ namespace Vmianqian private WinPanel wechatProtocolCard = null!; private WinPanel wechatLogCard = null!; private WinPanel alipayConfigCard = null!; + private AntdUI.Button btnAlipayStop = null!; + private AntdUI.Button btnAlipayStart = null!; + private AntdUI.Button btnAlipayLogin = null!; + private Input txtAliPid = null!; + private Input txtAliAppId = null!; + private Input txtAliPath = null!; + private NumericUpDown numAlipayInterval = null!; private AntdUI.Label lblAlipayDesc = null!; private WinPanel alipayLogCard = null!; private WinPanel settingsEmailCard = null!; diff --git a/Form1.cs b/Form1.cs index f5a3711..453c7b8 100644 --- a/Form1.cs +++ b/Form1.cs @@ -60,6 +60,10 @@ namespace Vmianqian private int? _wechatProtocolLastHomeType; private DateTime _wechatHookLastDiagAt = DateTime.MinValue; private bool _wechatHookFoundLedgerAnchor; + private bool _heartbeatRequestInProgress; + private int _wechatProtocolAuthFailCount; + private Vmianqian.AlipayMonitor? _alipayMonitor; + private AntdUI.Label? _lblWechatSidHint; private AntdUI.PageHeader titlebar = null!; private AntdUI.PageHeader bottomBar = null!; @@ -115,11 +119,6 @@ namespace Vmianqian private NumericUpDown numWechatInterval = null!; private AntdUI.Checkbox chkWheel = null!; - private AntdUI.Input txtAliPath = null!; - private AntdUI.Input txtAliAppId = null!; - private AntdUI.Input txtAliPid = null!; - private NumericUpDown numAlipayInterval = null!; - private DataGridView gridWechatLogs = null!; private DataGridView gridAlipayLogs = null!; @@ -132,6 +131,8 @@ namespace Vmianqian { InitializeComponent(); InitializeDesignerLayout(); + InitializeWechatUi(); + // InitializeAlipayUi(); ReloadMenuItems(); SelectPage("home"); @@ -167,6 +168,64 @@ namespace Vmianqian EnableWindowDrag(lblAlipayStatusValue); } + private void InitializeWechatUi() + { + _lblWechatSidHint = new AntdUI.Label + { + Name = "lblWechatSidHint", + Text = "请微信搜索“微信收款助手”服务号,点击小账本菜单,点击进入小账本,点击后才可自动获取SID", + ForeColor = Color.DimGray, + Visible = false, + Size = new Size(380, 52), + TextAlign = ContentAlignment.TopLeft + }; + + wechatProtocolCard.Controls.Add(_lblWechatSidHint); + _lblWechatSidHint.BringToFront(); + } + + // private void InitializeAlipayUi() + // { + // txtAliPath.PlaceholderText = "支付宝账单页面 URL(默认 advanced.htm)"; + // txtAliAppId.PlaceholderText = "支付宝 AppId(当前版本未使用)"; + // txtAliPid.PlaceholderText = "支付宝 UserId/Pid(当前版本未使用)"; + // lblAlipayDesc.Text = "流程:点击扫码登录后,在内嵌浏览器完成支付宝登录;登录成功后系统自动提取 Cookie/ctoken 并立即开始后台监听;按钮会切换为“停止监听”。"; + // numAlipayInterval.Minimum = 15; + // numAlipayInterval.Maximum = 35; + // numAlipayInterval.Value = 15; + + // // 按你的要求,这些参数不再前端展示,统一改为后台默认运行。 + // txtAliPath.Visible = false; + // txtAliPath.Enabled = false; + // numAlipayInterval.Visible = false; + // numAlipayInterval.Enabled = false; + // txtAliAppId.Visible = false; + // txtAliPid.Visible = false; + // txtAliAppId.Enabled = false; + // txtAliPid.Enabled = false; + // txtAliAppId.Text = string.Empty; + // txtAliPid.Text = string.Empty; + + // if (string.IsNullOrWhiteSpace(txtAliPath.Text) || IsLegacyAlipayApiUrl(txtAliPath.Text)) + // { + // txtAliPath.Text = GetDefaultAlipayBillApiUrl(); + // } + + // // 支付宝页已改为设计器控件,这里只做初始化,不再运行时动态创建按钮。 + // btnAlipayLogin.Text = "扫码登录"; + // btnAlipayLogin.Type = TTypeMini.Primary; + + // btnAlipayStart.Text = "开始监听"; + // btnAlipayStart.Type = TTypeMini.Primary; + // btnAlipayStart.Visible = false; + // btnAlipayStart.Enabled = false; + + // btnAlipayStop.Text = "停止监听"; + // btnAlipayStop.Type = TTypeMini.Error; + // btnAlipayStop.Visible = false; + // btnAlipayStop.Enabled = false; + // } + private void ReloadMenuItems() { menu.Items.Clear(); @@ -301,6 +360,9 @@ namespace Vmianqian if (hookCard != null && protocolCard != null) { + // 为 SID 提示文字和输入框预留足够空间 + protocolCard.Height = 250; + var hookPathWidth = Math.Max(140, hookCard.ClientSize.Width - 24 - 24 - btnSelectWechatPath.Width - 12); txtWechatPath.Width = hookPathWidth; btnSelectWechatPath.Size = new Size(92, 36); @@ -309,22 +371,38 @@ namespace Vmianqian btnWechatHookStart.Location = new Point(24, 182); lblWechatSidTitle.Location = new Point(24, 54); - btnWechatSidAuto.Size = new Size(92, 36); + btnWechatSidAuto.Size = new Size(110, 36); var sidWidth = Math.Max(180, protocolCard.ClientSize.Width - 48 - btnWechatSidAuto.Width - 12); - txtWechatId.Width = sidWidth; - btnWechatSidAuto.Location = new Point(txtWechatId.Left + txtWechatId.Width + 12, txtWechatId.Top); - var halfWidth = Math.Max(160, (sidWidth - 12) / 2); - var rightColX = 24 + halfWidth + 12; - lblWechatFrequencyTitle.Location = new Point(24, 146); - numWechatInterval.Location = new Point(24, 182); - numWechatInterval.Size = new Size(96, 30); - chkWheel.Location = new Point(rightColX, 198); + btnWechatSidAuto.Location = new Point(24, 76); + btnWechatProtocolStart.Size = new Size(120, 42); - btnWechatProtocolStart.Location = new Point(24, btnWechatHookStart.Bottom - btnWechatProtocolStart.Height); + btnWechatProtocolStart.Location = new Point(150, 72); + + if (_lblWechatSidHint != null) + { + // 将提示文字显示到三个按钮下方的空白区域(你标红框的位置) + _lblWechatSidHint.Location = new Point(24, 132); + _lblWechatSidHint.Size = new Size(Math.Max(260, protocolCard.ClientSize.Width - 48), 44); + _lblWechatSidHint.BringToFront(); + } + + txtWechatId.Width = sidWidth; + txtWechatId.Location = new Point(24, 178); + + lblWechatFrequencyTitle.Location = new Point(24, 18); + numWechatInterval.Location = new Point(126, 15); + numWechatInterval.Size = new Size(72, 30); + chkWheel.Location = new Point(220, 12); } if (gridCard != null) { + if (protocolCard != null) + { + gridCard.Top = protocolCard.Bottom + 18; + gridCard.Height = Math.Max(220, pageWechat.ClientSize.Height - gridCard.Top - 23); + } + if (gridWechatLogs != null) { gridWechatLogs.Size = new Size(Math.Max(240, gridCard.ClientSize.Width - 50), Math.Max(120, gridCard.ClientSize.Height - 76)); @@ -340,11 +418,28 @@ namespace Vmianqian private void LayoutAlipayPage() { + var configCard = FindCard(pageAlipay, "alipay-config"); + if (configCard != null) + { + var left = 24; + var top = 24; + + txtAliPath.Location = new Point(-5000, -5000); + txtAliAppId.Location = new Point(-5000, -5000); + txtAliPid.Location = new Point(-5000, -5000); + numAlipayInterval.Location = new Point(-5000, -5000); + + btnAlipayLogin.Location = new Point(left, top); + btnAlipayStart.Location = new Point(-5000, -5000); + btnAlipayStop.Location = new Point(-5000, -5000); + + lblAlipayDesc.Location = new Point(left, 76); + lblAlipayDesc.Size = new Size(Math.Max(360, configCard.ClientSize.Width - 48), 40); + } + var gridCard = FindCard(pageAlipay, "alipay-log"); if (gridCard != null) { - numAlipayInterval.Size = new Size(96, 30); - if (gridAlipayLogs != null) { gridAlipayLogs.Size = new Size(Math.Max(240, gridCard.ClientSize.Width - 50), Math.Max(120, gridCard.ClientSize.Height - 76)); @@ -462,18 +557,38 @@ namespace Vmianqian AllowUserToDeleteRows = false, ReadOnly = true, RowHeadersVisible = false, - AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill, + AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.None, BackgroundColor = Color.White, BorderStyle = BorderStyle.FixedSingle }; + // 列顺序按你的要求统一为: + // 序号、金额、时间、订单号、备注、订单状态、回调状态 grid.Columns.Add("Index", "序号"); - grid.Columns.Add("OrderNo", "订单号"); grid.Columns.Add("Amount", "金额"); grid.Columns.Add("Time", "时间"); + grid.Columns.Add("OrderNo", "订单号"); grid.Columns.Add("Remark", "备注"); - grid.Columns.Add("OrderStatus", "订单状态"); + grid.Columns.Add("OrderStatus", "订单状态"); grid.Columns.Add("Callback", "回调状态"); + + // 固定宽度列: + // - 序号:约 4 个中文字符宽度 + // - 金额:约 8 个字符宽度 + // - 时间:固定展示 yyyy-MM-dd HH:mm:ss + // - 订单状态 / 回调状态:约 4 个中文字符宽度 + grid.Columns["Index"]!.Width = 72; + grid.Columns["Amount"]!.Width = 90; + grid.Columns["Time"]!.Width = 160; + grid.Columns["OrderStatus"]!.Width = 72; + grid.Columns["Callback"]!.Width = 72; + + // 剩余宽度留给订单号和备注 + grid.Columns["OrderNo"]!.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill; + grid.Columns["Remark"]!.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill; + grid.Columns["OrderNo"]!.FillWeight = 58; + grid.Columns["Remark"]!.FillWeight = 42; + return grid; } @@ -485,7 +600,12 @@ namespace Vmianqian InitializeHeartbeatTimer(); SelectPage("home"); UpdateServiceStatus(false); + + // 心跳续签默认强制开启,避免因未勾选开关导致监控端掉线。 + _config.EnableHeartbeat = true; + chkHeartbeatEnabled.Checked = true; ApplyHeartbeatSetting(); + Log("程序已启动。"); } @@ -496,6 +616,8 @@ namespace Vmianqian StopWechatHook(); StopWechatProtocol(); StopWechatSidCapture(); + _alipayMonitor?.Stop(); + _alipayMonitor?.Dispose(); _runtimeTimer.Stop(); _runtimeTimer.Dispose(); _heartbeatTimer.Dispose(); @@ -515,6 +637,8 @@ namespace Vmianqian private void InitializeHeartbeatTimer() { + // 心跳在后台静默执行,不向付款日志区域刷屏。 + _heartbeatTimer.Interval = 10 * 1000; _heartbeatTimer.Tick += async (_, _) => await SendHeartbeatAsync(false); } @@ -648,11 +772,16 @@ namespace Vmianqian txtEmailAuthCode.Text = _config.EmailAuthCode; txtWechatPath.Text = _config.WechatPath; txtWechatId.Text = _config.WechatSid; - txtAliPath.Text = _config.AlipayPath; - txtAliAppId.Text = _config.AlipayAppId; - txtAliPid.Text = _config.AlipayUserId; + var savedAlipayUrl = string.IsNullOrWhiteSpace(_config.AlipayBillApiUrl) + ? _config.AlipayPath + : _config.AlipayBillApiUrl; + txtAliPath.Text = string.IsNullOrWhiteSpace(savedAlipayUrl) || IsLegacyAlipayApiUrl(savedAlipayUrl) + ? GetDefaultAlipayBillApiUrl() + : savedAlipayUrl; + txtAliAppId.Text = string.Empty; + txtAliPid.Text = string.Empty; numWechatInterval.Value = Math.Min(Math.Max(_config.WechatIntervalSeconds, 1), 3600); - numAlipayInterval.Value = Math.Min(Math.Max(_config.AlipayIntervalSeconds, 1), 3600); + numAlipayInterval.Value = Math.Min(Math.Max(_config.AlipayIntervalSeconds, 15), 35); chkWheel.Checked = _config.EnableWheelPolling; chkHeartbeatEnabled.Checked = _config.EnableHeartbeat; _config.WechatApiVersion = string.IsNullOrWhiteSpace(_config.WechatApiVersion) ? "7.10.1" : _config.WechatApiVersion.Trim(); @@ -670,10 +799,11 @@ namespace Vmianqian _config.WechatPath = txtWechatPath.Text.Trim(); _config.WechatSid = txtWechatId.Text.Trim(); _config.AlipayPath = txtAliPath.Text.Trim(); - _config.AlipayAppId = txtAliAppId.Text.Trim(); - _config.AlipayUserId = txtAliPid.Text.Trim(); + _config.AlipayBillApiUrl = txtAliPath.Text.Trim(); + _config.AlipayAppId = string.Empty; + _config.AlipayUserId = string.Empty; _config.WechatIntervalSeconds = (int)numWechatInterval.Value; - _config.AlipayIntervalSeconds = (int)numAlipayInterval.Value; + _config.AlipayIntervalSeconds = Math.Max(15, (int)numAlipayInterval.Value); _config.EnableWheelPolling = chkWheel.Checked; _config.EnableHeartbeat = chkHeartbeatEnabled.Checked; } @@ -756,7 +886,18 @@ namespace Vmianqian try { - Log("SID 捕获已启动:请现在打开微信收款助手/收款小账本页面。"); + if (!string.IsNullOrWhiteSpace(txtWechatId.Text)) + { + MessageBox.Show( + "检测到当前微信 SID 输入框已有内容,点击确定后将自动清空,再重新获取最新 SID。", + "微信 SID 提示", + MessageBoxButtons.OK, + MessageBoxIcon.Information); + + txtWechatId.Text = string.Empty; + } + + Log("SID 捕获已启动:请微信搜索“微信收款助手”服务号,点击小账本菜单,进入小账本页面后再等待自动获取。"); StartWechatSidCapture(); } catch (Exception ex) @@ -798,9 +939,16 @@ namespace Vmianqian StopWechatSidCapture(); _wechatSidCaptureCts = new CancellationTokenSource(); UpdateWechatMonitorButtons(); - btnWechatSidAuto.Text = "停止捕获"; + btnWechatSidAuto.Text = "停止获取"; btnWechatSidAuto.Type = TTypeMini.Error; - btnWechatSidAuto.Loading = true; + btnWechatSidAuto.Ghost = false; + btnWechatSidAuto.Loading = false; + if (_lblWechatSidHint != null) + { + _lblWechatSidHint.Visible = true; + _lblWechatSidHint.BringToFront(); + } + try { _proxyServer = new ProxyServer(); @@ -849,12 +997,17 @@ namespace Vmianqian if (btnWechatSidAuto != null) { - btnWechatSidAuto.Text = "自动获取"; + btnWechatSidAuto.Text = "2. 获取SID"; btnWechatSidAuto.Type = TTypeMini.Primary; btnWechatSidAuto.Ghost = true; btnWechatSidAuto.Loading = false; btnWechatSidAuto.Enabled = true; } + + if (_lblWechatSidHint != null) + { + _lblWechatSidHint.Visible = false; + } } private async Task OnWechatSidProxyBeforeRequest(object sender, SessionEventArgs e) @@ -925,26 +1078,16 @@ namespace Vmianqian private void btnWechatHookStart_Click(object? sender, EventArgs e) { - if (_wechatSidCaptureCts != null) - { - StopWechatSidCapture(); - UpdateWechatMonitorButtons(); - Log("SID 获取已停止。"); - return; - } - try { SaveUiToConfig(); SaveConfig(); LaunchWechatForSidCapture(); - Log("SID 捕获已启动:请等待微信打开,并进入微信收款助手/收款小账本页面。"); - StartWechatSidCapture(); - UpdateWechatMonitorButtons(); + Log("已执行启动微信操作。请继续点击“2. 获取SID”,然后进入微信收款助手的小账本页面。"); } catch (Exception ex) { - Log($"启动微信并获取 SID 失败:{ex.Message}"); + Log($"启动微信失败:{ex.Message}"); MessageBox.Show(ex.Message, "启动失败", MessageBoxButtons.OK, MessageBoxIcon.Error); } } @@ -995,12 +1138,13 @@ namespace Vmianqian return; } - var sidCaptureActive = _wechatSidCaptureCts != null; var protocolActive = string.Equals(_wechatMonitorMode, "protocol", StringComparison.Ordinal); - btnWechatHookStart.Text = sidCaptureActive ? "停止获取SID" : "1. 启动微信"; - btnWechatHookStart.Type = sidCaptureActive ? TTypeMini.Error : TTypeMini.Primary; - btnWechatProtocolStart.Text = protocolActive ? "停止监听" : "2. 开始监听"; + // 按你的要求,左侧“启动微信”按钮不跟随 SID 获取状态变化。 + btnWechatHookStart.Text = "1. 启动微信"; + btnWechatHookStart.Type = TTypeMini.Primary; + + btnWechatProtocolStart.Text = protocolActive ? "停止监听" : "3. 开始监听"; btnWechatProtocolStart.Type = protocolActive ? TTypeMini.Error : TTypeMini.Primary; } @@ -1415,7 +1559,7 @@ namespace Vmianqian var active = string.Equals(_wechatMonitorMode, "hook", StringComparison.Ordinal) || string.Equals(_wechatMonitorMode, "protocol", StringComparison.Ordinal); - lblWechatStatusValue.Text = active ? "微信: 在线" : "微信: 离线"; + lblWechatStatusValue.Text = active ? "微信: 监听中" : "微信: 离线"; lblWechatStatusValue.ForeColor = active ? Color.Green : Color.Red; } @@ -1425,6 +1569,7 @@ namespace Vmianqian _wechatProtocolSeen.Clear(); _wechatProtocolLastPendingCount = null; _wechatProtocolLastHomeType = null; + _wechatProtocolAuthFailCount = 0; _wechatProtocolCts = new CancellationTokenSource(); var token = _wechatProtocolCts.Token; @@ -1465,6 +1610,7 @@ namespace Vmianqian _wechatProtocolCts = null; _wechatProtocolLastPendingCount = null; _wechatProtocolLastHomeType = null; + _wechatProtocolAuthFailCount = 0; } private async Task PollWechatProtocolOnceAsync(CancellationToken token) @@ -1484,7 +1630,7 @@ namespace Vmianqian return; } - await SyncPendingOrdersFromServerAsync(token); + await SyncPendingOrdersFromServerAsync(token, 1); // 先调用 gethomedata,拿到可用时间区间与最新游标 var homeUrl = BuildWechatSmallbookUrl(sid, version); @@ -1548,10 +1694,27 @@ namespace Vmianqian if (payload != null) { Log($"协议诊断(gethomedata):retcode={payload.Retcode} errcode={payload.Errcode} msg={payload.Msg}" + (homeType != null ? $" type={homeType}" : string.Empty)); + + if (payload.Msg.Contains("效验登录态失败", StringComparison.OrdinalIgnoreCase)) + { + _wechatProtocolAuthFailCount++; + if (_wechatProtocolAuthFailCount >= 2) + { + BeginInvoke(() => + { + StopWechatProtocol(); + _wechatMonitorMode = string.Empty; + UpdateWechatMonitorButtons(); + UpdateWechatStatusUi(); + MessageBox.Show("微信 SID 已失效,请重新点击“2. 获取SID”后再开始监听。", "微信监听提示", MessageBoxButtons.OK, MessageBoxIcon.Warning); + }); + } + } } } else { + _wechatProtocolAuthFailCount = 0; var incomes = payload.Data?.IncomeList; if (incomes != null) { @@ -1628,7 +1791,7 @@ namespace Vmianqian } } - private async Task SyncPendingOrdersFromServerAsync(CancellationToken token) + private async Task SyncPendingOrdersFromServerAsync(CancellationToken token, int payType, bool writeLog = true) { var serverUrl = NormalizeServerUrl(_config.ServerUrl); var apiKey = _config.ApiKey?.Trim() ?? string.Empty; @@ -1639,13 +1802,16 @@ namespace Vmianqian var timestamp = DateTimeOffset.Now.ToUnixTimeSeconds().ToString(); var sign = CreateMd5(timestamp + apiKey); - var pendingUrl = BuildPendingOrdersUrl(serverUrl, timestamp, sign, type: 1); + var pendingUrl = BuildPendingOrdersUrl(serverUrl, timestamp, sign, payType); var response = await _httpClient.GetAsync(pendingUrl, token); var body = await response.Content.ReadAsStringAsync(token); if (!response.IsSuccessStatusCode) { - Log($"待支付订单同步失败:HTTP {(int)response.StatusCode} {response.StatusCode}"); + if (writeLog) + { + Log($"待支付订单同步失败(type={payType}):HTTP {(int)response.StatusCode} {response.StatusCode}"); + } return; } @@ -1657,20 +1823,23 @@ namespace Vmianqian catch (Exception ex) { var preview = body.Length > 200 ? body[..200] + "..." : body; - Log($"待支付订单同步失败:JSON 解析异常 {ex.Message},响应预览={preview}"); + if (writeLog) + { + Log($"待支付订单同步失败(type={payType}):JSON 解析异常 {ex.Message},响应预览={preview}"); + } return; } if (payload?.Code != 1 || payload.Data == null) { - if (payload != null) + if (payload != null && writeLog) { - Log($"待支付订单同步失败:code={payload.Code} msg={payload.Msg}"); + Log($"待支付订单同步失败(type={payType}):code={payload.Code} msg={payload.Msg}"); } return; } - _pendingOrders = payload.Data + var syncedOrders = payload.Data .Select(x => new PendingOrderRecord { OrderId = x.OrderId ?? string.Empty, @@ -1686,11 +1855,25 @@ namespace Vmianqian }) .Where(x => !string.IsNullOrWhiteSpace(x.OrderId) && !string.IsNullOrWhiteSpace(x.PayId)) .ToList(); + + _pendingOrders.RemoveAll(x => x.PayType == payType); + _pendingOrders.AddRange(syncedOrders); SavePendingOrders(); - if (_wechatProtocolLastPendingCount != _pendingOrders.Count) + + if (payType == 1) { - Log($"待支付订单同步成功:共 {_pendingOrders.Count} 条微信待支付订单"); - _wechatProtocolLastPendingCount = _pendingOrders.Count; + if (_wechatProtocolLastPendingCount != syncedOrders.Count) + { + if (writeLog) + { + Log($"待支付订单同步成功:共 {syncedOrders.Count} 条微信待支付订单"); + } + _wechatProtocolLastPendingCount = syncedOrders.Count; + } + } + else if (writeLog) + { + Log($"待支付订单同步成功:共 {syncedOrders.Count} 条支付宝待支付订单"); } } @@ -1918,6 +2101,215 @@ namespace Vmianqian } } + private void btnAlipayLogin_Click(object? sender, EventArgs e) + { + try + { + if (_alipayMonitor?.IsRunning == true) + { + _alipayMonitor.Stop(); + lblAlipayStatusValue.Text = "支付宝: 离线"; + lblAlipayStatusValue.ForeColor = Color.Red; + btnAlipayLogin.Text = "扫码登录"; + btnAlipayLogin.Type = TTypeMini.Primary; + + Log("支付宝轮询监听已停止。"); + return; + } + + SaveUiToConfig(); + SaveConfig(); + + using var loginForm = new Vmianqian.AlipayLoginForm(BuildAlipayOptions()); + loginForm.LoginSucceeded += (_, args) => + { + EnsureAlipayMonitorCreated(); + _alipayMonitor!.SetCookies(args.CookieContainer); + _alipayMonitor.SetCtoken(args.CToken); + + if (!string.IsNullOrWhiteSpace(args.CToken)) + { + var pureApiUrl = txtAliPath.Text.Trim(); + if (Uri.TryCreate(pureApiUrl, UriKind.Absolute, out var apiUri)) + { + pureApiUrl = $"{apiUri.Scheme}://{apiUri.Host}{apiUri.AbsolutePath}"; + } + + txtAliPath.Text = pureApiUrl; + } + + Log($"支付宝登录成功,Cookie 已提取,ctoken={args.CToken},当前地址:{args.CurrentUrl}"); + lblAlipayStatusValue.Text = "支付宝: 已登录"; + lblAlipayStatusValue.ForeColor = Color.DarkOrange; + + // 登录成功后自动开始监听,不再需要用户手动再点一次。 + _alipayMonitor.Start(); + + btnAlipayLogin.Text = "停止监听"; + btnAlipayLogin.Type = TTypeMini.Error; + + loginForm.BeginInvoke(() => loginForm.Close()); + }; + loginForm.StatusChanged += (_, args) => + { + Log($"支付宝登录窗口:{args.Message}"); + }; + + loginForm.ShowDialog(this); + } + catch (Exception ex) + { + Log($"打开支付宝登录窗口失败:{ex.Message}"); + MessageBox.Show(ex.Message, "支付宝登录失败", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + + private void btnAlipayStart_Click(object? sender, EventArgs e) + { + try + { + SaveUiToConfig(); + SaveConfig(); + + EnsureAlipayMonitorCreated(); + _alipayMonitor!.Start(); + lblAlipayStatusValue.Text = "支付宝: 监听中"; + lblAlipayStatusValue.ForeColor = Color.LimeGreen; + Log("支付宝轮询监听已启动。"); + } + catch (Exception ex) + { + Log($"启动支付宝监听失败:{ex.Message}"); + MessageBox.Show(ex.Message, "支付宝监听启动失败", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + + private void btnAlipayStop_Click(object? sender, EventArgs e) + { + _alipayMonitor?.Stop(); + lblAlipayStatusValue.Text = "支付宝: 离线"; + lblAlipayStatusValue.ForeColor = Color.Red; + Log("支付宝轮询监听已停止。"); + } + + private Vmianqian.AlipayMonitorOptions BuildAlipayOptions() + { + var apiUrl = txtAliPath.Text.Trim(); + var ctoken = string.Empty; + + if (Uri.TryCreate(apiUrl, UriKind.Absolute, out var uri)) + { + ctoken = TryGetQueryParameter(uri.Query, "ctoken") ?? string.Empty; + apiUrl = $"{uri.Scheme}://{uri.Host}{uri.AbsolutePath}"; + } + + return new Vmianqian.AlipayMonitorOptions + { + LoginUrl = "https://auth.alipay.com/login/index.htm", + BillApiUrl = string.IsNullOrWhiteSpace(apiUrl) || IsLegacyAlipayApiUrl(apiUrl) + ? GetDefaultAlipayBillApiUrl() + : apiUrl, + AppId = string.Empty, + UserId = string.Empty, + CToken = ctoken, + JsonpCallback = "callback", + MinPollSeconds = 15, + MaxPollSeconds = Math.Max(15, Math.Min(35, (int)numAlipayInterval.Value)), + PageSize = 10 + }; + } + + private void EnsureAlipayMonitorCreated() + { + if (_alipayMonitor != null) + { + return; + } + + _alipayMonitor = new Vmianqian.AlipayMonitor(BuildAlipayOptions()); + _alipayMonitor.SeedProcessedOrders(_pendingOrders + .Where(x => x.PayType == 2 && !string.IsNullOrWhiteSpace(x.TradeNo)) + .Select(x => x.TradeNo)); + + _alipayMonitor.StatusChanged += (_, args) => + { + if (InvokeRequired) + { + BeginInvoke(() => HandleAlipayStatusChanged(args)); + return; + } + + HandleAlipayStatusChanged(args); + }; + + _alipayMonitor.PaymentDetected += async (_, args) => + { + var evt = new PaymentEvent + { + Channel = "alipay", + Amount = args.Amount, + OrderNo = args.OrderNo, + TradeNo = args.OrderNo, + Payer = string.IsNullOrWhiteSpace(args.Remark) ? args.Payer : args.Remark, + Status = "success", + ReceivedAt = args.PaidAt == default ? DateTimeOffset.Now : args.PaidAt, + Raw = args.RawJson + }; + + try + { + // 支付宝轮询不像微信协议监听那样会在每轮自动同步待支付订单, + // 因此这里在回调前主动同步一次,避免本地订单缓存过旧导致“未匹配到待支付订单”。 + await SyncPendingOrdersFromServerAsync(CancellationToken.None, 2, false); + } + catch (Exception ex) + { + Log($"支付宝回调前同步待支付订单失败:{ex.Message}"); + } + + var callbackResult = await ForwardEventToServerAsync(evt); + AddPaymentLog(evt, callbackResult); + Log($"支付宝收到收款:{args.Amount:0.00},订单号={args.OrderNo},付款方={args.Payer}"); + }; + } + + private void HandleAlipayStatusChanged(Vmianqian.AlipayStatusChangedEventArgs args) + { + // Trace 级别属于轮询诊断日志,容易造成“解析成功 / 重复订单 / 已跳过”刷屏。 + // 这里只显示关键日志:登录、运行、停止、Cookie 失效等。 + if (!string.Equals(args.StatusCode, "Trace", StringComparison.OrdinalIgnoreCase)) + { + Log($"支付宝状态:{args.Message}"); + } + + switch (args.StatusCode) + { + case "Running": + lblAlipayStatusValue.Text = "支付宝: 监听中"; + lblAlipayStatusValue.ForeColor = Color.LimeGreen; + btnAlipayLogin.Text = "停止监听"; + btnAlipayLogin.Type = TTypeMini.Error; + break; + case "Ready": + lblAlipayStatusValue.Text = "支付宝: 已登录"; + lblAlipayStatusValue.ForeColor = Color.DarkOrange; + break; + case "CookieExpired": + lblAlipayStatusValue.Text = "支付宝: Cookie失效"; + lblAlipayStatusValue.ForeColor = Color.Red; + btnAlipayLogin.Text = "扫码登录"; + btnAlipayLogin.Type = TTypeMini.Primary; + MessageBox.Show("支付宝 Cookie 失效,请重新扫码登录。", "支付宝监听提示", MessageBoxButtons.OK, MessageBoxIcon.Warning); + break; + case "Stopped": + lblAlipayStatusValue.Text = "支付宝: 离线"; + lblAlipayStatusValue.ForeColor = Color.Red; + btnAlipayLogin.Text = "扫码登录"; + btnAlipayLogin.Type = TTypeMini.Primary; + break; + } + } + private async Task StartListenerAsync() { StopListener(); @@ -2369,15 +2761,15 @@ namespace Vmianqian gridAlipayLogs.Rows.Insert( 0, gridAlipayLogs.Rows.Count + 1, - paymentEvent.OrderNo, paymentEvent.Amount.ToString("0.00"), paymentEvent.ReceivedAt.LocalDateTime.ToString("yyyy-MM-dd HH:mm:ss"), + paymentEvent.OrderNo, paymentEvent.Payer, - orderStatusText, // 塞入第六列:订单状态 + orderStatusText, // 第六列:订单状态 callbackText - ); // 塞入第七列:回调状态 + ); // 第七列:回调状态 - lblAlipayStatusValue.Text = "支付宝: 在线"; + lblAlipayStatusValue.Text = "支付宝: 监听中"; lblAlipayStatusValue.ForeColor = Color.LimeGreen; } else @@ -2393,7 +2785,7 @@ namespace Vmianqian callbackText ); // 塞入第六列:回调状态 - lblWechatStatusValue.Text = "微信: 在线"; + lblWechatStatusValue.Text = "微信: 监听中"; lblWechatStatusValue.ForeColor = Color.LimeGreen; } } @@ -2424,7 +2816,9 @@ namespace Vmianqian private void StartHeartbeat() { - const int intervalSeconds = 30; + // 按当前要求:每 10 秒自动续签一次心跳。 + var intervalSeconds = 10; + _config.HeartbeatIntervalSeconds = 10; _heartbeatTimer.Interval = intervalSeconds * 1000; if (!_heartbeatTimer.Enabled) @@ -2436,6 +2830,8 @@ namespace Vmianqian _heartbeatTimer.Stop(); _heartbeatTimer.Start(); } + + _ = SendHeartbeatAsync(false); } private void StopHeartbeat() @@ -2448,6 +2844,12 @@ namespace Vmianqian private async Task SendHeartbeatAsync(bool writeSuccessLog) { + if (_heartbeatRequestInProgress) + { + return; + } + + _heartbeatRequestInProgress = true; try { var serverUrl = NormalizeServerUrl(txtServerUrl.Text); @@ -2455,13 +2857,38 @@ namespace Vmianqian if (string.IsNullOrWhiteSpace(serverUrl)) { - Log("心跳检测异常:未配置服务端地址。"); + if (writeSuccessLog) + { + Log("心跳检测异常:未配置服务端地址。"); + } return; } if (string.IsNullOrWhiteSpace(apiKey)) { - Log("心跳检测异常:未配置通信密钥。"); + if (writeSuccessLog) + { + Log("心跳检测异常:未配置通信密钥。"); + } + return; + } + + var heartbeatPushResult = await RequestAppHeartbeatAsync(serverUrl, apiKey); + if (!heartbeatPushResult.IsSuccessStatusCode) + { + if (writeSuccessLog) + { + Log($"心跳上报失败:HTTP {(int)heartbeatPushResult.StatusCode} {heartbeatPushResult.StatusCode},内容:{heartbeatPushResult.ResponseBody}"); + } + return; + } + + if (heartbeatPushResult.Response?.Code != 1) + { + if (writeSuccessLog) + { + Log($"心跳上报失败:code={heartbeatPushResult.Response?.Code ?? 0},msg={heartbeatPushResult.Response?.Msg ?? "无法解析响应"},内容:{heartbeatPushResult.ResponseBody}"); + } return; } @@ -2469,20 +2896,29 @@ namespace Vmianqian if (!heartbeatCheckResult.IsSuccessStatusCode) { - Log($"心跳检测异常:HTTP {(int)heartbeatCheckResult.StatusCode} {heartbeatCheckResult.StatusCode},内容:{heartbeatCheckResult.ResponseBody}"); + if (writeSuccessLog) + { + Log($"心跳检测异常:HTTP {(int)heartbeatCheckResult.StatusCode} {heartbeatCheckResult.StatusCode},内容:{heartbeatCheckResult.ResponseBody}"); + } return; } var heartbeatResponse = heartbeatCheckResult.Response; if (heartbeatResponse == null) { - Log($"心跳检测异常:服务端返回无法解析,内容:{heartbeatCheckResult.ResponseBody}"); + if (writeSuccessLog) + { + Log($"心跳检测异常:服务端返回无法解析,内容:{heartbeatCheckResult.ResponseBody}"); + } return; } if (heartbeatResponse.Code != 1) { - Log($"心跳检测异常:code={heartbeatResponse.Code},msg={heartbeatResponse.Msg}"); + if (writeSuccessLog) + { + Log($"心跳检测异常:code={heartbeatResponse.Code},msg={heartbeatResponse.Msg}"); + } return; } @@ -2517,12 +2953,29 @@ namespace Vmianqian _ => $"未知({monitorState?.ToString() ?? "null"})" }; - Log($"心跳检测异常:状态={stateText},最后支付={lastPayText},最后心跳={lastHeartText},返回JSON={heartbeatCheckResult.ResponseBody}"); + if (writeSuccessLog) + { + Log($"心跳检测异常:状态={stateText},最后支付={lastPayText},最后心跳={lastHeartText},返回JSON={heartbeatCheckResult.ResponseBody}"); + } } catch (Exception ex) { - Log($"心跳检测异常:{ex.Message}"); + if (writeSuccessLog) + { + Log($"心跳检测异常:{ex.Message}"); + } } + finally + { + _heartbeatRequestInProgress = false; + } + } + + private async Task RequestAppHeartbeatAsync(string serverUrl, string apiKey) + { + var timestamp = DateTimeOffset.Now.ToUnixTimeSeconds().ToString(); + var url = BuildAppHeartbeatUrl(serverUrl, timestamp, CreateMd5(timestamp + apiKey)); + return await SendHeartbeatRequestAsync(url); } private async Task RequestHeartbeatStateAsync(string serverUrl, string apiKey) @@ -2543,38 +2996,20 @@ namespace Vmianqian foreach (var url in candidates.Distinct()) { - var response = await _httpClient.GetAsync(url); - var responseBody = await response.Content.ReadAsStringAsync(); - - HeartbeatStateResponse? parsed = null; - try - { - parsed = JsonSerializer.Deserialize(responseBody, _jsonOptions); - } - catch - { - } - - var result = new HeartbeatRequestResult - { - StatusCode = response.StatusCode, - ResponseBody = responseBody, - Response = parsed - }; - + var result = await SendHeartbeatRequestAsync(url); lastResult = result; - if (!response.IsSuccessStatusCode) + if (!result.IsSuccessStatusCode) { continue; } - if (parsed?.Code == 1) + if (result.Response?.Code == 1) { return result; } - if (parsed?.Msg?.Contains("签名校验不通过", StringComparison.OrdinalIgnoreCase) == true) + if (result.Response?.Msg?.Contains("签名校验不通过", StringComparison.OrdinalIgnoreCase) == true) { continue; } @@ -2589,6 +3024,28 @@ namespace Vmianqian }; } + private async Task SendHeartbeatRequestAsync(string url) + { + var response = await _httpClient.GetAsync(url); + var responseBody = await response.Content.ReadAsStringAsync(); + + HeartbeatStateResponse? parsed = null; + try + { + parsed = JsonSerializer.Deserialize(responseBody, _jsonOptions); + } + catch + { + } + + return new HeartbeatRequestResult + { + StatusCode = response.StatusCode, + ResponseBody = responseBody, + Response = parsed + }; + } + private async Task WriteJsonResponseAsync(HttpListenerResponse response, int statusCode, object payload) { response.StatusCode = statusCode; @@ -2820,6 +3277,24 @@ namespace Vmianqian } } + private static string GetDefaultAlipayBillApiUrl() + { + return "https://consumeprod.alipay.com/record/advanced.htm"; + } + + private static bool IsLegacyAlipayApiUrl(string? url) + { + if (string.IsNullOrWhiteSpace(url)) + { + return false; + } + + return url.Contains("mbillexprod.alipay.com/enterprise/simpleTradeOrderQuery.json", StringComparison.OrdinalIgnoreCase) || + url.Contains("getMsgInfosNew.json", StringComparison.OrdinalIgnoreCase) || + url.Contains("messageBox", StringComparison.OrdinalIgnoreCase) || + url.Contains("msginfos", StringComparison.OrdinalIgnoreCase); + } + private static string NormalizeServerUrl(string? url) { var value = url?.Trim() ?? string.Empty; @@ -2902,6 +3377,17 @@ namespace Vmianqian return $"{stateUri}?{string.Join("&", query)}"; } + private static string BuildAppHeartbeatUrl(string serverUrl, string timestamp, string sign) + { + if (!Uri.TryCreate(serverUrl, UriKind.Absolute, out var baseUri)) + { + throw new InvalidOperationException("服务端地址格式无效。"); + } + + var heartUri = new Uri(baseUri, "/appHeart"); + return $"{heartUri}?t={Uri.EscapeDataString(timestamp)}&sign={Uri.EscapeDataString(sign)}"; + } + private static string CreateMd5(string input) { var bytes = Encoding.UTF8.GetBytes(input); @@ -2962,13 +3448,14 @@ namespace Vmianqian public string WechatSid { get; set; } = string.Empty; public string WechatApiVersion { get; set; } = "7.10.1"; public string AlipayPath { get; set; } = string.Empty; + public string AlipayBillApiUrl { get; set; } = "https://consumeprod.alipay.com/record/advanced.htm"; public string AlipayAppId { get; set; } = string.Empty; public string AlipayUserId { get; set; } = string.Empty; public int ListenPort { get; set; } = 8989; public int WechatIntervalSeconds { get; set; } = 5; - public int AlipayIntervalSeconds { get; set; } = 5; + public int AlipayIntervalSeconds { get; set; } = 15; public bool EnableWheelPolling { get; set; } = true; - public bool EnableHeartbeat { get; set; } = false; + public bool EnableHeartbeat { get; set; } = true; public int HeartbeatIntervalSeconds { get; set; } = 30; public string ListenPath { get; set; } = "/notify/"; } diff --git a/Vmianqian.csproj b/Vmianqian.csproj index ad3b757..b5cc563 100644 --- a/Vmianqian.csproj +++ b/Vmianqian.csproj @@ -13,6 +13,7 @@ + diff --git a/bin/Debug/net10.0-windows/Microsoft.Web.WebView2.Core.dll b/bin/Debug/net10.0-windows/Microsoft.Web.WebView2.Core.dll new file mode 100644 index 0000000..4a27877 Binary files /dev/null and b/bin/Debug/net10.0-windows/Microsoft.Web.WebView2.Core.dll differ diff --git a/bin/Debug/net10.0-windows/Microsoft.Web.WebView2.Core.xml b/bin/Debug/net10.0-windows/Microsoft.Web.WebView2.Core.xml new file mode 100644 index 0000000..d9d574c --- /dev/null +++ b/bin/Debug/net10.0-windows/Microsoft.Web.WebView2.Core.xml @@ -0,0 +1,8879 @@ + + + + Microsoft.Web.WebView2.Core + + + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + WebView2 enables you to host web content using the latest Microsoft Edge browser and web technology. + + + + + Creates a CoreWebView2 object that wraps an existing COM ICoreWebView2 object. + This allows interacting with the CoreWebView2 using .NET, even if it was originally created using COM. + + Pointer to a COM object that implements the ICoreWebView2 COM interface. + Returns a .NET CoreWebView2 object that wraps the COM object. + Thrown when the provided COM pointer is null. + Thrown when the value is not an ICoreWebView2 COM object and cannot be wrapped. + + + + Returns the existing COM ICoreWebView2 object underlying this .NET CoreWebView2 object. + This allows interacting with the WebView2 control using COM APIs, + even if the control was originally created using .NET. + + Pointer to a COM object that implements the ICoreWebView2 COM interface. + + + + Print the current page to PDF asynchronously with the provided settings. + + + See for description of settings. Passing null for printSettings results in default print settings used. + + Use resultFilePath to specify the path to the PDF file. The host should provide an absolute path, including file name. If the path points to an existing file, the file will be overwritten. If the path is not valid, the method fails. + + The async PrintToPdf operation completes when the data has been written to the PDF file. If the application exits before printing is complete, the file is not saved. Only one `Printing` operation can be in progress at a time. + If PrintToPdf is called while a `PrintToPdf` or `PrintToPdfStream` or `Print` operation is in progress, the operation completes and returns false. + + + + + Adds a URI and resource context filter for corresponding request sources for the event. + + A URI to be added to the event. + A resource context filter to be added to the event. + A request source filter to be added to the event. + + + + Removes a matching WebResource filter that was previously added for the event. + + An URI to be added to the event. + A resource context filter to be added to the event. + A request source filter to be added to the event. + + + + Same as , but also has support for posting DOM + objects to page content. + + The web message to be posted to the top level document in + this WebView. + Additional DOM objects posted to the content. + + The event args is an instance of MessageEvent. The setting must be true or the message + will not be sent. The event arg's data property of the event arg is the + webMessageAsJson string parameter parsed as a JSON string into a JavaScript object. + The event arg's source property of the event arg is a reference to the + window.chrome.webview object. For information about sending messages from the HTML + document in the WebView to the host, navigate to . The message is sent asynchronously. If a + navigation occurs before the message is posted to the page, the message is not be sent. + This additionalObjects is retrieved in web content via the DOM MessageEvent additionalObjects + property as an array-like list of DOM objects. Currently these type of objects can be + posted: + + + .NET / WinRT + DOM type + + + + [FileSystemHandle](https://developer.mozilla.org/docs/Web/API/FileSystemHandle) + + + null + null + + + The objects are posted to web content, following the + [structured-clone](https://developer.mozilla.org/docs/Web/API/Web_Workers_API/Structured_clone_algorithm) + semantics, meaning only objects that can be cloned can be posted. They will also behave as + if they had been created by the web content they are posted to. For example, if a + FileSystemFileHandle is posted to a web content it can only be re-transferred via + postMessage to other web content [with the same + origin](https://fs.spec.whatwg.org/#filesystemhandle). + Warning: An app needs to be mindful when using this API to post DOM objects as this API + provides the web content with unusual access to sensitive Web Platform features such as + filesystem access! Similar to PostWebMessageAsJson, the app should check the property right before posting the message to ensure the message + and objects will only be sent to the target web content that it expects to receive the DOM + objects. Additionally, the order of messages that are posted between PostWebMessageAsJson + and PostWebMessageAsJsonWithAdditionalObjects may not be preserved. + + + + + + + Opens the browser print preview dialog to print the current web page + + + + + Gets the object contains various modifiable settings for the running WebView. + + + + + Gets the URI of the current top level document. + + + This value potentially changes as a part of the event raised for some cases such as navigating to a different site or fragment navigations. It remains the same for other types of navigations such as page refreshes or history.pushState with the same URL as the current page. + + + + + + Gets the process ID of the browser process that hosts the WebView. + + + + + true if the WebView is able to navigate to a previous page in the navigation history. + + + If CanGoBack changes value, the event is raised. + + + + + + true if the WebView is able to navigate to a next page in the navigation history. + + + If CanGoForward changes value, the event is raised. + + + + + + Gets the title for the current top-level document. + + + If the document has no explicit title or is otherwise empty, a default that may or may not match the URI of the document is used. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="DocumentTitle"::: + + + + + Indicates if the WebView contains a fullscreen HTML element. + + + + + NavigationStarting is raised when the WebView main frame is requesting permission to navigate to a different URI. + + + Redirects raise this event as well, and the navigation id is the same as the original one. You may block corresponding navigations until the event handler returns. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="NavigationStarting"::: + + + + + ContentLoading is raised before any content is loaded, including scripts added with . ContentLoading is not raised if a same page navigation occurs (such as through fragment navigations or history.pushState navigations). + + + This operation follows the and events and precedes the and events. + + + + + + + + + SourceChanged is raised when the property changes. + + + SourceChanged is raised when navigating to a different site or fragment navigations. It is not raised for other types of navigations such as page refreshes or history.pushState with the same URL as the current page. This event is raised before for navigation to a new document. + + + + + + + HistoryChanged is raised for changes to joint session history, which consists of top-level and manual frame navigations. + + + Use HistoryChanged to verify that the or value has changed. HistoryChanged is also raised for using or . HistoryChanged is raised after and . CanGoBack is false for navigations initiated through CoreWebView2Frame APIs if there has not yet been a user gesture. + + + + + + + + + NavigationCompleted is raised when the WebView has completely loaded (body.onload has been raised) or loading stopped with error. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="NavigationCompleted"::: + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="DOMContentLoaded"::: + + + + + FrameNavigationStarting is raised when a child frame in the WebView requests permission to navigate to a different URI. + + + Redirects raise this operation as well, and the navigation id is the same as the original one. You may block corresponding navigations until the event handler returns. + + + + + FrameNavigationCompleted is raised when a child frame has completely loaded (body.onload has been raised) or loading stopped with error. + + + + + ScriptDialogOpening is raised when a JavaScript dialog (alert, confirm, prompt, or beforeunload) displays for the WebView. + + + This event only is raised if the property is set to false. This event suppresses dialogs or replaces default dialogs with custom dialogs. + + If a deferral is not taken on the event args, the subsequent scripts are blocked until the event handler returns. If a deferral is taken, the scripts are blocked until the deferral is completed. + + + + + + PermissionRequested is raised when content in a WebView requests permission to access some privileged resources. + + + If a deferral is not taken on the event args, the subsequent scripts are blocked until the event handler returns. If a deferral is taken, the scripts are blocked until the deferral is completed. + + + + + ProcessFailed is raised when a WebView process ends unexpectedly or becomes unresponsive. + + + ProcessFailed is raised when any of the processes in the WebView2 Process Group encounters one of the following conditions: + + + + Condition + Details + + + Unexpected exit + + The process indicated by the event args has exited unexpectedly (usually due to a crash). The failure might or might not be recoverable, and some failures are auto-recoverable. + + + + Unresponsiveness + + The process indicated by the event args has become unresponsive to user input. This is only reported for renderer processes, and will run every few seconds until the process becomes responsive again. + + + + + Note: When the failing process is the browser process, a event will run too. + + Your application can use to identify which condition and process the event is for, and to collect diagnostics and handle recovery if necessary. For more details about which cases need to be handled by your application, see . + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="ProcessFailed"::: + + + + + WebMessageReceived is raised when the setting is set and the top-level document of the WebView runs window.chrome.webview.postMessage or window.chrome.webview.postMessageWithAdditionalObjects. + + + The postMessage function is void postMessage(object) where object is any object supported by JSON conversion. + When postMessage is called, the handler's Invoke method will be called with the object parameter postMessage converted to a JSON string. + If the same page calls postMessage multiple times, the corresponding WebMessageReceived events are guaranteed to be fired in the same order. However, if multiple frames call postMessage, there is no guaranteed order. In addition, WebMessageReceived events caused by calls to postMessage are not guaranteed to be sequenced with events caused by DOM APIs. For example, if the page runs + + chrome.webview.postMessage("message"); + window.open(); + + then the event might be fired before the WebMessageReceived event. If you need the WebMessageReceived event to happen before anything else, then in the WebMessageReceived handler you can post a message back to the page and have the page wait until it receives that message before continuing. + + + + + NewWindowRequested is raised when content inside the WebView requests to open a new window, such as through window.open(). + + + The app can pass a target WebView that is considered the opened window or mark the event as , in which case WebView2 does not open a window. + If either Handled or properties are not set, the target content will be opened on a popup window. + If a deferral is not taken on the event args, scripts that resulted in the new window that are requested are blocked until the event handler returns. If a deferral is taken, then scripts are blocked until the deferral is completed. + + On Hololens 2, if the property is not set and the property is not set to true, the WebView2 will navigate to the . + If either of these properties are set, the WebView2 will not navigate to the and the the event will continue as normal. + + + + + DocumentTitleChanged is raised when the property changes and may be raised before or after the event. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="DocumentTitleChanged"::: + + + + + + ContainsFullScreenElementChanged is raised when the property changes. + + + An HTML element inside the WebView may enter fullscreen to the size of the WebView or leave fullscreen. This event is useful when, for example, a video element requests to go fullscreen. The listener of this event may resize the WebView in response. + + + + + + WebResourceRequested is raised when the WebView is performing a URL request to a matching URL and resource context filter that was added with . + + + At least one filter must be added for the event to be raised. + The web resource requested may be blocked until the event handler returns if a deferral is not taken on the event args. If a deferral is taken, then the web resource requested is blocked until the deferral is completed. + + If this event is subscribed in the handler it should be called after the new window is set. For more details see . + + This event is by default raised for file, http, and https URI schemes. This is also raised for registered custome URI schemes. See for more details. + + + + + + WindowCloseRequested is raised when content inside the WebView requested to close the window, such as after window.close() is run. + + + The app should close the WebView and related app window if that makes sense to the app. + After the first window.close() call, this event may not fire for any immediate back to back window.close() calls. + + + + + Causes a navigation of the top level document to the specified URI. + + The URI to navigate to. + + For more information, navigate to [Navigation event](/microsoft-edge/webview2/concepts/navigation-events). Note that this operation starts a navigation and the corresponding event is raised sometime after Navigate runs. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="Navigate"::: + + + + + + + Initiates a navigation to htmlContent as source HTML of a new document. + + A source HTML of a new document. + + The htmlContent parameter may not be larger than 2 MB (2 * 1024 * 1024 bytes) in total size. The origin of the new page is about:blank. + + + + webView.CoreWebView2.SetVirtualHostNameToFolderMapping( + "appassets.example", "assets", CoreWebView2HostResourceAccessKind.DenyCors); + string htmlContent = + @" + + + +

Click me

+ + "; + webview.NavigateToString(htmlContent); +
+
+ + + +
+ + + Adds the provided JavaScript to a list of scripts that should be run after the global object has been created, but before the HTML document has been parsed and before any other script included by the HTML document is run. + + The JavaScript code to be run. + A script ID that may be passed when calling . + + The injected script will apply to all future top level document and child frame navigations until removed with . + This is applied asynchronously and you must wait for the returned to complete before you can be sure that the script is ready to execute on future navigations. + If the method is run in handler, it should be called before the new window is set. For more details see . + + Note that if an HTML document has sandboxing of some kind via [sandbox](https://developer.mozilla.org/docs/Web/HTML/Element/iframe#attr-sandbox) properties or the [Content-Security-Policy HTTP header](https://developer.mozilla.org/docs/Web/HTTP/Headers/Content-Security-Policy) this will affect the script run here. So, for example, if the allow-modals keyword is not set then calls to the alert function will be ignored. + + + + + + Removes the corresponding JavaScript added via with the specified script ID. + + The ID corresponds to the JavaScript code to be removed from the list of scripts. + Both use and this method in handler at the same time sometimes causes trouble. Since invalid scripts will be ignored, the script IDs you got may not be valid anymore. + + + + Runs JavaScript code from the javaScript parameter in the current top-level document rendered in the WebView. + + The JavaScript code to be run in the current top-level document rendered in the WebView. + A JSON encoded string that represents the result of running the provided JavaScript. + + If the result is undefined, contains a reference cycle, or otherwise is not able to be encoded into JSON, the JSON null value is returned as the "null" string. + + A function that has no explicit return value returns undefined. If the script that was run throws an unhandled exception, then the result is also null. This method is applied asynchronously. If the method is run after the event during a navigation, the script runs in the new document when loading it, around the time is run. This operation works even if is set to false. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="ExecuteScript"::: + + + + + + Captures an image of what WebView is displaying. + + The format of the image to be captured. + The stream to which the resulting image binary data is written. + + When CapturePreviewAsync finishes writing to the stream, the Invoke method on the provided handler parameter is called. This method fails if called before the first event. For example if this is called in the event for the first navigation it will fail. For subsequent navigations, the method may not fail, but will not capture an image of a given webpage until the event has been fired for it. Any call to this method prior to that will result in a capture of the page being navigated away from. + + + + + + Reloads the current page. + + + This is similar to navigating to the URI of current top level document including all navigation events firing and respecting any entries in the HTTP cache. But, the back or forward history will not be modified. + + + + + Posts the specified webMessageAsJson to the top level document in this WebView. + + The web message to be posted to the top level document in this WebView. + + The event args is an instance of MessageEvent. The setting must be true or the message will not be sent. The event arg's data property of the event arg is the webMessageAsJson string parameter parsed as a JSON string into a JavaScript object. The event arg's source property of the event arg is a reference to the window.chrome.webview object. For information about sending messages from the HTML document in the WebView to the host, navigate to . The message is sent asynchronously. If a navigation occurs before the message is posted to the page, the message is not be sent. + + + Runs the message event of the window.chrome.webview of the top-level document. JavaScript in that document may subscribe and unsubscribe to the event using the following code: + + window.chrome.webview.addEventListener('message', handler) + window.chrome.webview.removeEventListener('message', handler) + + + + + + + + + Posts a message that is a simple string rather than a JSON string representation of a JavaScript object. + + The web message to be posted to the top level document in this WebView. + + This behaves in exactly the same manner as , but the data property of the event arg of the window.chrome.webview message is a string with the same value as webMessageAsString. Use this instead of if you want to communicate using simple strings rather than JSON objects. + + + + + + + Runs an asynchronous DevToolsProtocol method. + + The full name of the method in the format {domain}.{method}. + A JSON formatted string containing the parameters for the corresponding method. + A JSON string that represents the method's return object. + + For more information about available methods, navigate to [DevTools Protocol Viewer](https://aka.ms/DevToolsProtocolDocs). The returned task is completed when the method asynchronously completes and will return the method's return object as a JSON string. Note even though WebView2 dispatches the CDP messages in the order called, CDP method calls may be processed out of order. If you require CDP methods to run in a particular order, you should await for the previous method call. + + If the method is to run in handler it should be called + before the new window is set if the cdp messages should affect the initial navigation. If + called after setting the NewWindow property, the cdp messages + may or may not apply to the initial navigation and may only apply to the subsequent navigation. + For more details . + + + + + Navigates the WebView to the previous page in the navigation history. + + + + + Navigates the WebView to the next page in the navigation history. + + + + + Gets a DevTools Protocol event receiver that allows you to subscribe to a DevToolsProtocol event. + + The full name of the event in the format {domain}.{event}. + A Devtools Protocol event receiver. + + For more information about DevToolsProtocol events description and event args, navigate to [DevTools Protocol Viewer](https://aka.ms/DevToolsProtocolDocs). + + + + + Stops all navigations and pending resource fetches. + + + Does not stop scripts. + + + + + Adds the provided host object to script running in the WebView with the specified name. + + The name of the host object. + The host object to be added to script. + + Host objects are exposed as host object proxies via window.chrome.webview.hostObjects.{name}. Host object proxies are promises and will resolve to an object representing the host object. Only the COM visible objects/properties/methods can be accessed from script. + The app can control which part of .NET objects are exposed using . + + JavaScript code in the WebView will be able to access appObject as following and then access attributes and methods of appObject. + + Note that while simple types, IDispatch and array are supported, and IUnknown objects that also implement IDispatch are treated as IDispatch, generic IUnknown, VT_DECIMAL, or VT_RECORD variant is not supported. Remote JavaScript objects like callback functions are represented as an VT_DISPATCH VARIANT with the object implementing IDispatch. The JavaScript callback method may be invoked using DISPID_VALUE for the DISPID. Such callback method invocations will return immediately and will not wait for the JavaScript function to run and so will not provide the return value of the JavaScript function. Nested arrays are supported up to a depth of 3. Arrays of by reference types are not supported. VT_EMPTY and VT_NULL are mapped into JavaScript as null. In JavaScript null and undefined are mapped to VT_EMPTY. + + Additionally, all host objects are exposed as window.chrome.webview.hostObjects.sync.{name}. Here the host objects are exposed as synchronous host object proxies. These are not promises and calls to functions or property access synchronously block running script waiting to communicate cross process for the host code to run. Accordingly this can result in reliability issues and it is recommended that you use the promise based asynchronous window.chrome.webview.hostObjects.{name} API described above. + + Synchronous host object proxies and asynchronous host object proxies can both proxy the same host object. Remote changes made by one proxy will be reflected in any other proxy of that same host object whether the other proxies and synchronous or asynchronous. + + While JavaScript is blocked on a synchronous call to native code, that native code is unable to call back to JavaScript. Attempts to do so will fail with HRESULT_FROM_WIN32(ERROR_POSSIBLE_DEADLOCK). + + Host object proxies are JavaScript Proxy objects that intercept all property get, property set, and method invocations. Properties or methods that are a part of the Function or Object prototype are run locally. Additionally any property or method in the array chrome.webview.hostObjects.options.forceLocalProperties will also be run locally. This defaults to including optional methods that have meaning in JavaScript like toJSON and Symbol.toPrimitive. You can add more to this array as required. + + There's a method chrome.webview.hostObjects.cleanupSome that will best effort garbage collect host object proxies. + + The chrome.webview.hostObjects.options object provides the ability to change some functionality of host objects. + + + + Options property + Details + + + forceLocalProperties + + This is an array of host object property names that will be run locally, instead of being called on the native host object. This defaults to then, toJSON, Symbol.toString, and Symbol.toPrimitive. You can add other properties to specify that they should be run locally on the JavaScript host object proxy. + + + + log + + This is a callback that will be called with debug information. For example, you can set this to console.log.bind(console) to have it print debug information to the console to help when troubleshooting host object usage. By default this is null. + + + + shouldSerializeDates + + By default this is false, and JavaScript Date objects will be sent to host objects as a string using JSON.stringify. You can set this property to true to have Date objects properly serialize as a System.DateTime when sending to the .NET host object, and have System.DateTime properties and return values create a JavaScript Date object. + + + + defaultSyncProxy + + When calling a method on a synchronous proxy, the result should also be a synchronous proxy. But in some cases, the sync/async context is lost (for example, when providing to native code a reference to a function, and then calling that function in native code). In these cases, the proxy will be asynchronous, unless this property is set. + + + + forceAsyncMethodMatches + + This is an array of regular expressions. When calling a method on a synchronous proxy, the method call will be performed asynchronously if the method name matches a string or regular expression in this array. Setting this value to Async will make any method that ends with Async be an asynchronous method call. If an async method doesn't match here and isn't forced to be asynchronous, the method will be invoked synchronously, blocking execution of the calling JavaScript and then returning the resolution of the promise, rather than returning a promise. + + + + ignoreMemberNotFoundError + + By default, an exception is thrown when attempting to get the value of a proxy property that doesn't exist on the corresponding native class. Setting this property to true switches the behavior to match Chakra WinRT projection (and general JavaScript) behavior of returning undefined with no error. + + + + shouldPassTypedArraysAsArrays + + By default, typed arrays are passed to the host as IDispatch. To instead pass typed arrays to the host as array, set this to true. + + + + + Host object proxies additionally have the following methods: + + + + Method name + Details + + + applyHostFunction, getHostProperty, setHostProperty + + Perform a method invocation, property get, or property set on the host object. You can use these to explicitly force a method or property to run remotely if there is a conflicting local method or property. For instance, proxy.toString() will run the local toString method on the proxy object. But proxy.applyHostFunction('toString') runs toString on the host proxied object instead. + + + + getLocalProperty, setLocalProperty + + Perform property get, or property set locally. You can use these methods to force getting or setting a property on the host object proxy itself rather than on the host object it represents. For instance, proxy.unknownProperty will get the property named unknownProperty from the host proxied object. But proxy.getLocalProperty('unknownProperty') will get the value of the property unknownProperty on the proxy object itself. + + + + addEventListener + + This method only exists on proxies for .NET objects. Bind the JavaScript handler to the C# event, so that the JavaScript handler can be called through the C# event. For example, chrome.webview.hostObjects.sample.addEventListener('TestEvent', () => { alert('Invoked from remote');}); bind an anonymous JavaScript function to a C# event called 'TestEvent'. When calling TestEvent?.Invoke() on C# side, the JavaScript function that was just bound will be called asynchronously. It allows adding more than one handler for an event, but if the handler is already in the list of event handler, it will not be added a second time. If the host object cannot find the event with the name passed in by the addEventListener function or it is no public or its return type is not void, an exception will be thrown. If the count and type of C# event's parameters do not match the count and type of JavaScript handler, invoke addEventListener will be successful but an exception will be passed to JavaScript when invoke the event on C# side. If the host object has defined addEventListener function, use the defined function rather than the additionally addEventListener function. + + + + removeEventListener + + This method only exists on proxies for .NET objects. Removes a handler previously bound with addEventListener(). If the handler does not exist in the list of event handler, nothing will happen. If the host object cannot find the event with the name passed in by the removeEventListener function or it is no public, an exception will be thrown. If the host object has defined removeEventListener function, use the defined function rather than the additionally removeEventListener function. + + + + sync + + Asynchronous host object proxies expose a sync method which returns a promise for a synchronous host object proxy for the same host object. For example, chrome.webview.hostObjects.sample.methodCall() returns an asynchronous host object proxy. You can use the sync method to obtain a synchronous host object proxy instead: + const syncProxy = await chrome.webview.hostObjects.sample.methodCall().sync() + + + + async + + Synchronous host object proxies expose an async method which blocks and returns an asynchronous host object proxy for the same host object. For example, chrome.webview.hostObjects.sync.sample.methodCall() returns a synchronous host object proxy. Calling the async method on this blocks and then returns an asynchronous host object proxy for the same host object: const asyncProxy = chrome.webview.hostObjects.sync.sample.methodCall().async() + + + + then + + Asynchronous host object proxies have a then method. This allows them to be awaitable. then will return a promise that resolves with a representation of the host object. If the proxy represents a JavaScript literal then a copy of that is returned locally. If the proxy represents a function then a non-awaitable proxy is returned. If the proxy represents a JavaScript object with a mix of literal properties and function properties, then the a copy of the object is returned with some properties as host object proxies. + + + + cancelPromise + + This method attempts to cancel the fulfillment of a promised value. If the promise hasn't already been fulfilled and cancelation is supported, the promise will get rejected. cancelPromise supports cancelation of IAsyncOperation and IAsyncAction methods. If the promise is successfully canceled, then calling await on the promise will throw. For example, chrome.webview.hostObjects.cancelPromise(promise); await promise; will throw with "Promise Canceled". Once a promise has been canceled, a subsequent cancel on the same promise will throw an exception as well. + + + + + All other property and method invocations (other than the above Remote object proxy methods, forceLocalProperties list, and properties on Function and Object prototypes) are run remotely. Asynchronous host object proxies return a promise representing asynchronous completion of remotely invoking the method, or getting the property. The promise resolves after the remote operations complete and the promises resolve to the resulting value of the operation. Synchronous host object proxies work similarly but block JavaScript execution and wait for the remote operation to complete. + + Setting a property on an asynchronous host object proxy works slightly differently. The set returns immediately and the return value is the value that will be set. This is a requirement of the JavaScript Proxy object. If you need to asynchronously wait for the property set to complete, use the setHostProperty method which returns a promise as described above. Synchronous object property set property synchronously blocks until the property is set. + + Exposing host objects to script has security risk. Please follow [best practices](/microsoft-edge/webview2/concepts/security). + + + To create a [IDispatch](/windows/win32/api/oaidl/nn-oaidl-idispatch) implementing class in C# use the following attributes on each class you intend to expose. + + // Bridge and BridgeAnotherClass are C# classes that implement IDispatch and works with AddHostObjectToScript. + [ClassInterface(ClassInterfaceType.AutoDual)] + [ComVisible(true)] + public class BridgeAnotherClass + { + // Sample property. + public string Prop { get; set; } = "Example"; + } + + [ClassInterface(ClassInterfaceType.AutoDual)] + [ComVisible(true)] + public class Bridge + { + public string Func(string param) + { + return "Example: " + param; + } + + public BridgeAnotherClass AnotherObject { get; set; } = new BridgeAnotherClass(); + + // Sample indexed property. + [System.Runtime.CompilerServices.IndexerName("Items")] + public string this[int index] + { + get { return m_dictionary[index]; } + set { m_dictionary[index] = value; } + } + private Dictionary<int, string> m_dictionary = new Dictionary<int, string>(); + } + + Then add instances of those classes via : + + webView.CoreWebView2.AddHostObjectToScript("bridge", new Bridge()); + + And then in script you can call the methods, and access those properties of the objects added via . + Note that `CoreWebView2.AddHostObjectToScript` only applies to the top-level document and not to frames. To add host objects to frames use `CoreWebView2Frame.AddHostObjectToScript`. + + // Find added objects on the hostObjects property + const bridge = chrome.webview.hostObjects.bridge; + + // Call a method and pass in a parameter. + // The result is another proxy promise so you must await to get the result. + console.log(await bridge.Func("testing...")); + + // A property may be another object as long as its class also implements + // IDispatch. + // Getting a property also gets a proxy promise you must await. + const propValue = await bridge.AnotherObject.Prop; + console.log(propValue); + + // Indexed properties + let index = 123; + bridge[index] = "test"; + let result = await bridge[index]; + console.log(result); + + + + + + + Removes the host object specified by the name so that it is no longer accessible from JavaScript code in the WebView. + + The name of the host object to be removed. + + While new access attempts are denied, if the object is already obtained by JavaScript code in the WebView, the JavaScript code continues to have access to that object. Running this method for a name that is already removed or never added fails. + + + + + Opens the DevTools window for the current document in the WebView. + + + Does nothing if run when the DevTools window is already open. + + + + + + + + Warning: This method and are deprecated. + + Removes a matching WebResource filter that was previously added for the event. + An URI to at which a web resource filter was added. + A previously added resource context filter to be removed. + A filter that was never added. + + If the same filter was added multiple times, then it must need to be removed as many times as it was added for the removal to be effective. + + + + + + Gets the object associated with this . + + + + + + Exposes the used to create this . + + + + + WebResourceResponseReceived is raised when the WebView receives the response for a request for a web resource (any URI resolution performed by the WebView; such as HTTP/HTTPS, file and data requests from redirects, navigations, declarations in HTML, implicit Favicon lookups, and fetch API usage in the document). + + + The host app can use this event to view the actual request and response for a web resource. There is no guarantee about the order in which the WebView processes the response and the host app's handler runs. The app's handler will not block the WebView from processing the response. + The event args include the as sent by the wire and received, including any additional headers added by the network stack that were not be included as part of the associated event, such as Authentication headers. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="WebResourceResponseReceived"::: + + + + + DOMContentLoaded is raised when the initial HTML document has been parsed. + + + This aligns with the the document's DOMContentLoaded event in HTML. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="DOMContentLoaded"::: + + + + + Navigates using a constructed object. + + The constructed web resource object to provide post data or additional request headers during navigation. + + The headers in the override headers added by WebView2 runtime except for Cookie headers. Method can only be either GET or POST. Provided post data will only be sent only if the method is POST and the uri scheme is HTTP(S). + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="NavigateWithWebResourceRequest"::: + + + + + Whether WebView is suspended. + + + True when WebView is suspended, from the time when has completed successfully until WebView is resumed. + + + + + An app may call this API to have the WebView2 consume less memory. + + + This is useful when a Win32 app becomes invisible, or when a Universal Windows Platform app is being suspended, during the suspended event handler before completing the suspended event. + + The property must be false when the API is called. Otherwise, the API throws COMException with error code of HRESULT_FROM_WIN32(ERROR_INVALID_STATE). + + Suspending is similar to putting a tab to sleep in the Edge browser. Suspending pauses WebView script timers and animations, minimizes CPU usage for the associated browser renderer process and allows the operating system to reuse the memory that was used by the renderer process for other processes. + + Note that Suspend is best effort and considered completed successfully once the request is sent to browser renderer process. If there is a running script, the script will continue to run and the renderer process will be suspended after that script is done. + + See [Sleeping Tabs FAQ](https://techcommunity.microsoft.com/t5/articles/sleeping-tabs-faq/m-p/1705434) for conditions that might prevent WebView from being suspended. In those situations, the result of the async task is false. + + The WebView will be automatically resumed when it becomes visible. Therefore, the app normally does not have to call explicitly. + + The app can call and then periodically for an invisible WebView so that the invisible WebView can sync up with latest data and the page ready to show fresh content when it becomes visible. + + All WebView APIs can still be accessed when a WebView is suspended. Some APIs like Navigate will auto resume the WebView. To avoid unexpected auto resume, check property before calling APIs that might change WebView state. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="TrySuspend"::: + + + + + Resumes the WebView so that it resumes activities on the web page. + + + This API can be called while the WebView2 controller is invisible. + + The app can interact with the WebView immediately after . + + WebView will be automatically resumed when it becomes visible. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="Resume"::: + + + + + Sets a mapping between a virtual host name and a folder path to make available to web sites via that host name. + + A virtual host name. + A folder path name to be mapped to the virtual host name. The length must not exceed the Windows MAX_PATH limit. + The level of access to resources under the virtual host from other sites. + + + After setting the mapping, documents loaded in the WebView can use HTTP or HTTPS URLs at the specified host name specified by hostName to access files in the local folder specified by folderPath. + This mapping applies to both top-level document and iframe navigations as well as subresource references from a document. This also applies to dedicated and shared worker scripts but does not apply to service worker scripts. + + Due to a current implementation limitation, media files accessed using virtual host name can be very slow to load. + + As the resource loaders for the current page might have already been created and running, changes to the mapping might not be applied to the current page and a reload of the page is needed to apply the new mapping. + + Both absolute and relative paths are supported for folderPath. Relative paths are interpreted as relative to the folder where the exe of the app is in. + + + For example, after calling SetVirtualHostNameToFolderMapping("appassets.example", "assets", CoreWebView2HostResourceAccessKind.Deny);, navigating to https://appassets.example/my-local-file.html will show content from my-local-file.html in the assets subfolder located on disk under the same path as the app's executable file. + + DOM elements that want to reference local files will have their host reference virtual host in the source. If there are multiple folders being used, define one unique virtual host per folder. + + + You should typically choose virtual host names that are never used by real sites. + If you own a domain such as example.com, another option is to use a subdomain reserved for the app (like my-app.example.com). + + + [RFC 6761](https://tools.ietf.org/html/rfc6761) has reserved several special-use domain names that are guaranteed to not be used by real sites (for example, .example, .test, and .invalid). + + + Note that using .local as the top-level domain name will work but can cause a delay during navigations. You should avoid using .local if you can. + + + Apps should use distinct domain names when mapping folder from different sources that should be isolated from each other. For instance, the app might use app-file.example for files that ship as part of the app, and book1.example might be used for files containing books from a less trusted source that were previously downloaded and saved to the disk by the app. + + + The host name used in the APIs is canonicalized using Chromium's host name parsing logic before being used internally. + For more information see [HTML5 2.6 URLs](https://dev.w3.org/html5/spec-LC/urls.html). + + + All host names that are canonicalized to the same string are considered identical. + For example, EXAMPLE.COM and example.com are treated as the same host name. + An international host name and its Punycode-encoded host name are considered the same host name. There is no DNS resolution for host name and the trailing '.' is not normalized as part of canonicalization. + + + Therefore example.com and example.com. are treated as different host names. Similarly, virtual-host-name and virtual-host-name.example.com are treated as different host names even if the machine has a DNS suffix of example.com. + + + Specify the minimal cross-origin access necessary to run the app. If there is not a need to access local resources from other origins, use . + + + + + webView.CoreWebView2.SetVirtualHostNameToFolderMapping( + "appassets.example", "assets", CoreWebView2HostResourceAccessKind.DenyCors); + webView.Source = new Uri("https://appassets.example/index.html"); + + + This in an example on how to embed a local image. For more information see . + + webView.CoreWebView2.SetVirtualHostNameToFolderMapping( + "appassets.example", "assets", CoreWebView2HostResourceAccessKind.DenyCors); + string c_navString = ""; + webview.NavigateToString(c_navString); + + + + + + + Clears a host name mapping for local folder that was added by . + + The host name to be removed from the mapping. + + + + + FrameCreated is raised when a new iframe is created. Handle this event to get access to objects. + + + + Use the to listen for when this iframe goes away. + + + + + DownloadStarting is raised when a download has begun, blocking the default download dialog, but not blocking the progress of the download. + + + The host can choose to cancel a download, change the result file path, and hide the default download dialog. If download is not handled or canceled, the download is saved to the default path after the event completes with default download dialog shown. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="DownloadStarting"::: + + + + + ClientCertificateRequested is raised when WebView2 is making a request to an HTTP server that needs a client certificate for HTTP authentication. Read more about HTTP client certificates at [RFC 8446 The Transport Layer Security (TLS) Protocol Version 1.3](https://tools.ietf.org/html/rfc8446). + + + The host have several options for responding to client certificate requests: + + + + Scenario + Handled + Cancel + SelectedCertificate + + + Respond to server with a certificate + True + False + MutuallyTrustedCertificate value + + + Respond to server without certificate + True + False + null + + + Display default client certificate selection dialog prompt + False + False + n/a + + + Cancel the request + n/a + True + n/a + + + + If the host don't handle the event, WebView2 will show the default client certificate selection dialog prompt to the user. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="ClientCertificateRequested1"::: + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="ClientCertificateRequested2"::: + + + + + Opens the Browser Task Manager view as a new window in the foreground. + + + If the Browser Task Manager is already open, this will bring it into the foreground. WebView2 currently blocks the Shift+Esc shortcut for opening the task manager. An end user can open the browser task manager manually via the Browser task manager entry of the DevTools window's title bar's context menu. + + + + + Indicates whether all audio output from this CoreWebView2 is muted or not. Set to true will mute this CoreWebView2, and set to false will unmute this CoreWebView2. true if audio is muted. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="ToggleIsMuted"::: + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="UpdateTitleWithMuteState"::: + + + + + Indicates whether any audio output from this CoreWebView2 is playing. true if audio is playing even if is true. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="UpdateTitleWithMuteState"::: + + + + + IsMutedChanged is raised when the mute state changes. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="IsMutedChanged"::: + + + + + IsDocumentPlayingAudioChanged is raised when document starts or stops playing audio. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="IsDocumentPlayingAudioChanged"::: + + + + + True if the default download dialog is currently open. + + + The value of this property changes only when the default download dialog is explicitly opened or closed. Hiding the WebView implicitly hides the dialog, but does not change the value of this property. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="ToggleDefaultDownloadDialog"::: + + + + + The default download dialog corner alignment. + + + The dialog can be aligned to any of the WebView corners (see ). When the WebView or dialog changes size, the dialog keeps it position relative to the corner. The dialog may become partially or completely outside of the WebView bounds if the WebView is small enough. Set the margin from the corner with the property. The corner alignment and margin should be set during initialization to ensure that they are correctly applied when the layout is first computed, otherwise they will not take effect until the next time the WebView position or size is updated. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="SetDefaultDownloadDialogPosition"::: + + + + + The default download dialog margin relative to the WebView corner specified by . + + + The margin is a point that describes the vertical and horizontal distances between the chosen WebView corner and the default download dialog corner nearest to it. Positive values move the dialog towards the center of the WebView from the chosen WebView corner, and negative values move the dialog away from it. Use (0, 0) to align the dialog to the WebView corner with no margin. The corner alignment and margin should be set during initialization to ensure that they are correctly applied when the layout is first computed, otherwise they will not take effect until the next time the WebView position or size is updated. + + + + + Raised when the property changes. + + + This event comes after the event. Setting the property disables the default download dialog and ensures that this event is never raised. + + + + + Open the default download dialog. + + + If the dialog is opened before there are recent downloads, the dialog shows all past downloads for the current profile. Otherwise, the dialog shows only the recent downloads with a "See more" button for past downloads. Calling this method raises the event if the dialog was closed. No effect if the dialog is already open. + + + + + Close the default download dialog. + + + Calling this method raises the event if the dialog was open. No effect if the dialog is already closed. + + + + + BasicAuthenticationRequested event is raised when WebView encounters a Basic HTTP Authentication request as described in https://developer.mozilla.org/docs/Web/HTTP/Authentication, a Digest HTTP Authentication request as described in https://developer.mozilla.org/docs/Web/HTTP/Headers/Authorization#digest, an NTLM authentication or a Proxy Authentication request. + + + The host can provide a response with credentials for the authentication or cancel the request. If the host sets the Cancel property to false but does not provide either UserName or Password properties on the Response property, then WebView2 will show the default authentication challenge dialog prompt to the user. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="BasicAuthenticationRequested"::: + + + + + ContextMenuRequested is raised when a context menu is requested by the user and the content inside WebView hasn't disabled context menus. + + + The host has the option to create their own context menu with the information provided in the event or can add items to or remove items from WebView context menu. If the host doesn't handle the event, WebView will display the default context menu. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="CustomContextMenu"::: + + + + + Runs an asynchronous DevToolsProtocol method for a specific session of an attached target. + + The sessionId for an attached target. null or empty string is treated as the session for the default target for the top page. + The full name of the method in the format {domain}.{method}. + A JSON formatted string containing the parameters for the corresponding method. + A JSON string that represents the method's return object. + + There could be multiple DevToolsProtocol targets in a WebView. + Besides the top level page, iframes from different origin and web workers are also separate targets. + Attaching to these targets allows interaction with them. + When the DevToolsProtocol is attached to a target, the connection is identified by a sessionId. + + To use this API, you must set the flatten parameter to true when calling Target.attachToTarget or Target.setAutoAttach DevToolsProtocol method. + Using Target.setAutoAttach is recommended as that would allow you to attach to dedicated worker targets, which are not discoverable via other APIs like Target.getTargets. + For more information about targets and sessions, navigate to [Chrome DevTools Protocol - Target domain]( https://chromedevtools.github.io/devtools-protocol/tot/Target). + + For more information about available methods, navigate to [DevTools Protocol Viewer](https://aka.ms/DevToolsProtocolDocs). The handler's Invoke method will be called when the method asynchronously completes. Invoke will be called with the method's return object as a JSON string. + + + + + The current text of the statusbar as defined by [Window.statusbar](https://developer.mozilla.org/docs/Web/API/Window/statusbar). + + + + + StatusBarTextChanged event is raised when the text in the [Window.statusbar](https://developer.mozilla.org/docs/Web/API/Window/statusbar) changes. When the event is fired use the property to get the current statusbar text. + + + Events which cause causes can be anything from hover, url events, and others. There is not a finite list on how to cause the statusbar to change. + The developer must create the status bar and set the text. + + + + + The associated object of . + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="Profile"::: + + + + + The ServerCertificateErrorDetected event is raised when the WebView2 cannot verify server's digital certificate while loading a web page. + + + This event will raise for all web resources and follows the event. + + If you don't handle the event, WebView2 will show the default TLS interstitial error page to the user for navigations, and for non-navigations the web request is cancelled. + + Note that WebView2 before raising `ServerCertificateErrorDetected` raises a event with as FALSE and any of the below WebErrorStatuses that indicate a certificate failure. + + + + + + + + + + + + + + + + + + + + For more details see and handle ServerCertificateErrorDetected event or show the default TLS interstitial error page to the user according to the app needs. + + WebView2 caches the response when action is for the RequestUri's host and the server certificate in the session and the event won't be raised again. + + To raise the event again you must clear the cache using . + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="ServerCertificateErrorDetected"::: + + + + + Clears all cached decisions to proceed with TLS certificate errors from the event for all WebView2's sharing the same session. + + + + + Get the Uri as a string of the current Favicon. This will be an empty string if the page does not have a Favicon. + + + + + Raised when the Favicon has changed. This can include when a new page is loaded and thus by default no icon is set or the icon is set for the page by DOM or JavaScript. + + + The first argument is the Webview2 which saw the changed Favicon and the second is null. + + + + + Get the downloaded Favicon image for the current page and copy it to the image stream. + + The format to retrieve the Favicon in. + + An IStream populated with the downloaded Favicon. + + + + + Print the current web page asynchronously to the specified printer with the provided settings. + + + See for description of settings. Passing null for printSettings results in default print settings used. + + The method will return as if printerName doesn't match with the name of any installed printers on the user OS. + The method will throw ArgumentException if the caller provides invalid settings for a given printer. + + The async Print operation completes when it finishes printing to the printer. Only one Printing operation can be in progress at a time. If Print is called while a or or job is in progress, throws exception. This is only for printing operation on one webview. + + + + Error + PrintStatus + Notes + + + No + + Print operation succeeded. + + + No + + If specified printer is not found or printer status is not available, offline or error state. + + + No + + Print operation is failed. + + + ArgumentException + + If the caller provides invalid settings for the specified printer. + + + Exception + + Print operation is failed as printing job already in progress. + + + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="PrintToPrinter"::: + + + + + Opens the print dialog to print the current web page. + + + See for descriptions of print dialog kinds. + + Invoking browser or system print dialog doesn't open new print dialog if it is already open. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="ShowPrintUI"::: + + + + + Provides the Pdf data of current web page asynchronously for the provided settings. + + + Stream will be rewound to the start of the pdf data. + + See for description of settings. Passing null for printSettings results in default print settings used. + + The async PrintToPdfStream operation completes when it finishes writing to the stream. Only one Printing operation can be in progress at a time. If is called while a or or job is in progress, the throws an exception. This is only for printing operation on one webview. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="PrintToPdfStream"::: + + + + + Share a shared buffer object with script of the main frame in the WebView. + + The object to be shared with script. + The desired given to script. + Additional data to be send to script. If it is not null or empty string, and it is not a valid JSON string, will be thrown. + + The script will receive a sharedbufferreceived event from chrome.webview. + The event arg for that event will have the following methods and properties. + + + + Property + Description + + + getBuffer() + A method that returns an ArrayBuffer object with the backing content from the shared buffer. + + + additionalData + An object as the result of parsing additionalDataAsJson as JSON string. This property will be undefined if additionalDataAsJson is nullptr or empty string. + + + source + With a value set as chrome.webview object. + + + + If access is , the script will only have read access to the buffer. + If the script tries to modify the content in a read only buffer, it will cause an access violation in WebView renderer process and crash the renderer process. + + If the shared buffer is already closed, the API throws with error code of RO_E_CLOSED. + The script code should call chrome.webview.releaseBuffer with the shared buffer as the parameter to release underlying resources as soon as it does not need access to the shared buffer any more. + + The application can post the same shared buffer object to multiple web pages or iframes, or post to the same web page or iframe multiple times. + Each PostSharedBufferToScript will create a separate ArrayBuffer object with its own view of the memory and is separately released. + The underlying shared memory will be released when all the views are released. + + Sharing a buffer to script has security risk. You should only share buffer with trusted site. + If a buffer is shared to a untrusted site, possible sensitive information could be leaked. + If a buffer is shared as modifiable by the script and the script modifies it in an unexpected way, it could result in corrupted data that might even crash the application. + + The example code shows how to send data to script for one time read only consumption. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="OneTimeShareBuffer"::: + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/assets/sharedBuffer.html" id="ShareBufferScriptCode_1"::: + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/assets/sharedBuffer.html" id="ShareBufferScriptCode_2"::: + + + + + LaunchingExternalUriScheme is raised when a navigation request is made to a URI scheme that is registered with the OS. + + + The event handler may suppress the default dialog or replace the default dialog with a custom dialog. + If a is not taken on the event args, the external URI scheme launch is blocked until the event handler returns. + If a deferral is taken, the external URI scheme launch is blocked until the is completed. + The host also has the option to cancel the URI scheme launch. + + The and events will be raised, regardless of whether the property is set to true or false. + The event will be raised with the property set to false and the property set to regardless of whether the host sets the property. + The , and events will not be raised for this navigation to the external URI scheme regardless of the property. + The event will be raised after the event and before the event. + + The default will also be updated upon navigation to an external URI scheme. + If a setting on the interface has been changed, navigating to an external URI scheme will trigger the to update. + + The WebView2 may not display the default dialog based on user settings, browser settings, and whether the origin is determined as a [trustworthy origin](https://w3c.github.io/webappsec-secure-contexts#potentially-trustworthy-origin); however, the event will still be raised. + If the request is initiated by a cross-origin frame without a user gesture, the request will be blocked and the `LaunchingExternalUriScheme` event will not be raised. A URI scheme may be blocked for safety reasons. In this case the `LaunchingExternalUriScheme` event will not be raised. The default dialog may show an "always allow" checkbox which allows the user to opt-in to relaxed security (i.e. skipping future default dialogs) for the combination of the URI scheme and the origin of the page initiating this external URI scheme launch. The checkbox is offered so long as the group policy to show the checkbox is not explicitly disabled and there is a trustworthy initiating origin. If the user has checked this box, future attempts to launch this URI scheme will still raise the event. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="LaunchingExternalUriScheme"::: + + + + + Desired of a WebView. + + + An app may set to indicate desired memory consumption level of WebView. + Scripts will not be impacted and continue to run. + This is useful for inactive apps that still want to run scripts and/or keep network connections alive and therefore could not call and to reduce memory consumption. + These apps can set memory usage target level to when the app becomes inactive, and set back to when the app becomes active. + + It is not necessary to set CoreWebView2Controller's IsVisible property to false when setting the property. + + It is a best effort operation to change memory usage level, and the API will return before the operation completes. + + Setting the level to could potentially cause memory for some WebView browser processes to be swapped out to disk in some circumstances. It is a best effort to reduce memory usage as much as possible. + If a script runs after its related memory has been swapped out, the memory will be swapped back in to ensure the script can still run, but performance might be impacted. + Therefore, the app should set the level back to when the app becomes active again. Setting memory usage target level back to normal will not happen automatically. + + An app should choose to use either the combination of and or the combination of setting MemoryUsageTargetLevel to and . It is not advisable to mix them. + Trying to set while suspended will be ignored. + The and methods will change the . + will automatically set to while on suspended WebView will automatically set to . + Calling when the WebView is not suspended would not change . + + + + + The unique identifier of the main frame. It's the same kind of ID as with the and . + + + FrameId may not be valid if has not done any navigation. It's safe to get this value during or after the first event. Otherwise, it could return the invalid frame Id 0. + + + + + Runs JavaScript code from the javaScript parameter in the current top-level document rendered in the WebView, The result of the execution is returned asynchronously in the object which has methods and properties to obtain the successful result of script execution as well as any unhandled JavaScript exceptions. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="ExecuteScriptWithResult"::: + + + + + NotificationReceived is raised when a non-persistent notification is received. + + + + + SaveAsUIShowing is raised when browser trys to open a save as dialog. It includes opening dialog manually from context menu or programmatically from . + + + + + + Async method to programmatically trigger a Save As action for the currently loaded document. + + It opens a system modal dialog by default. If the property is `TRUE`, the system dialog is not opened. This method can return . + + + + + + This event will be raised during system FileTypePolicy checking the dangerous file extension list. + + + Developers can specify their own logic for determining whether to allow a particular type of file to be saved from the document origin URI. Developers can also determine the save decision based on other criteria. Here are two properties in to manage the decision, and . + Table of Properties' value and result: + + + + CancelSave + SuppressDefaultPolicy + Result + + + False + False + Perform the default policy check. It may show the security warning UI if the file extension is dangerous. + + + False + True + Skip the default policy check and the possible security warning. Start saving or downloading. + + + True + Any + Skip the default policy check and the possible security warning. Abort save or download. + + + + + + + ScreenCaptureStarting event is raised when the [Screen Capture API](https://www.w3.org/TR/screen-capture/) is requested by the user using getDisplayMedia(). + + + If a deferral is not taken on the event args, the subsequent scripts are blocked until the event handler returns. If a deferral is taken, the scripts are blocked until the deferral is completed. + + + + + Represents a certificate. Gives access to a certificate's metadata. + + + + + Converts this to a X509Certificate2. + + + An object created using PEM encoded data from + this object. + + + + + + The valid date and time for the certificate since the UNIX epoc. + + + + + The valid date and time for the certificate since the UNIX epoc. + + + + + Subject of the certificate. + + + + + Name of the certificate authority that issued the certificate. + + + + + Base64 encoding of DER encoded serial number of the certificate. Read more about DER at [RFC 7468 DER](https://tools.ietf.org/html/rfc7468#appendix-B). + + + + + Display name for a certificate. + + + + + Returns list of PEM encoded certificate issuer chain. In this list first element is the current certificate followed by intermediate1, intermediate2...intermediateN-1. Root certificate is the last element in the list. + + + + + PEM encoded data for the certificate. Returns Base64 encoding of DER encoded certificate. Read more about PEM at [RFC 1421 Privacy Enhanced Mail](https://tools.ietf.org/html/rfc1421). + + + + + Represents a client certificate. Gives access to a certificate's metadata. + + + + + Converts this to a X509Certificate2. + + + An object created using PEM encoded data from + this object. + + + + + + The valid date and time for the certificate since the UNIX epoc. + + + + + The valid date and time for the certificate since the UNIX epoc. + + + + + Subject of the certificate. + + + + + Name of the certificate authority that issued the certificate. + + + + + Base64 encoding of DER encoded serial number of the certificate. Read more about DER at [RFC 7468 DER](https://tools.ietf.org/html/rfc7468#appendix-B). + + + + + Display name for a certificate. + + + + + Returns list of PEM encoded client certificate issuer chain. In this list first element is the current certificate followed by intermediate1, intermediate2...intermediateN-1. Root certificate is the last element in the list. + + + + + Kind of a certificate. See for descriptions. + + + + + PEM encoded data for the certificate. Returns Base64 encoding of DER encoded certificate. Read more about PEM at [RFC 1421 Privacy Enhanced Mail](https://tools.ietf.org/html/rfc1421). + + + + + This class is the owner of the object, and + provides support for resizing, showing and hiding, focusing, and other + functionality related to windowing and composition. + + + The owns the , and if all references to the go away, the WebView will be closed. + + + The owner of the object that provides support for resizing, showing and hiding, focusing, and other functionality related to windowing and composition. + + + The CoreWebView2Controller owns the , and if all references to the go away, the WebView is closed. + + + The owner of the object that provides support for resizing, showing and hiding, focusing, and other functionality related to windowing and composition. + + + The CoreWebView2Controller owns the , and if all references to the go away, the WebView is closed. + + + The owner of the object that provides support for resizing, showing and hiding, focusing, and other functionality related to windowing and composition. + + + The CoreWebView2Controller owns the , and if all references to the go away, the WebView is closed. + + + The owner of the object that provides support for resizing, showing and hiding, focusing, and other functionality related to windowing and composition. + + + The CoreWebView2Controller owns the , and if all references to the go away, the WebView is closed. + + + The owner of the object that provides support for resizing, showing and hiding, focusing, and other functionality related to windowing and composition. + + + The CoreWebView2Controller owns the , and if all references to the go away, the WebView is closed. + + + + + Gets the associated with this . + + + + + + Moves focus into WebView. + + The reason for moving focus. + + WebView will get focus and focus will be set to correspondent element in the page hosted in the WebView. For reason, focus is set to previously focused element or the default element if no previously focused element exists. For reason, focus is set to the first element. For reason, focus is set to the last element. WebView changes focus through user interaction including selecting into a WebView or Tab into it. For tabbing, the app runs MoveFocus with or to align with Tab and Shift+Tab respectively when it decides the WebView is the next tabbable element. + + + + + Determines whether to show or hide the WebView. + + + If IsVisible is set to false, the WebView is transparent and is not rendered. However, this does not affect the window containing the WebView (the ParentWindow parameter that was passed to or ). + If you want that window to disappear too, run the corresponding Hide method from the UI framework on it directly in addition to modifying this. + WebView as a child window does not get window messages when the top window is minimized or restored. For performance reasons, developers should set the IsVisible property of the WebView to false when the app window is minimized and back to true when the app window is restored. The app window does this by handling SIZE_MINIMIZED and SIZE_RESTORED command upon receiving WM_SIZE message. There are CPU and memory benefits when the page is hidden. For instance Chromium has code that throttles activities on the page like animations and some tasks are run less frequently. Similarly, WebView2 will purge some caches to reduce memory usage. + + + + + + Gets or sets the WebView bounds. + + + Bounds are relative to the . The app has two ways to position a WebView: + + + Create a child HWND that is the WebView parent HWND. Position the window where the WebView should be. Use (0, 0) for the top-left corner (the offset) of the Bounds of the WebView. + + + Use the top-most window of the app as the WebView parent HWND. For example, to position ebView correctly in the app, set the top-left corner of the Bounds of the WebView. + + + + The values of Bounds are limited by the coordinate space of the host. + + + + + Gets or sets the zoom factor for the WebView. + + + Note that changing zoom factor may cause window.innerWidth or window.innerHeight and page layout to change. A zoom factor that is applied by the host by setting this ZoomFactor property becomes the new default zoom for the WebView. This zoom factor applies across navigations and is the zoom factor WebView is returned to when the user presses Ctrl+0. When the zoom factor is changed by the user (resulting in the app receiving ), that zoom applies only for the current page. Any user applied zoom is only for the current page and is reset on a navigation. Specifying a ZoomFactor less than or equal to 0 is not allowed. WebView also has an internal supported zoom factor range. When a specified zoom factor is out of that range, it is normalized to be within the range, and a event is raised for the real applied zoom factor. When this range normalization happens, this reports the zoom factor specified during the previous modification of the ZoomFactor property until the event is received after WebView applies the normalized zoom factor. + + + + + Gets the parent window provided by the app or sets the parent window that this WebView is using to render content. + + + It initially returns the ParentWindow passed into or . Setting the property causes the WebView to re-parent the main WebView window to the newly provided window. + + + + + ZoomFactorChanged is raised when the property changes. + + + The event may be raised because the property was modified, or due to the user manually modifying the zoom. When it is modified using the property, the internal zoom factor is updated immediately and no ZoomFactorChanged event is raised. WebView associates the last used zoom factor for each site. It is possible for the zoom factor to change when navigating to a different page. When the zoom factor changes due to a navigation change, the ZoomFactorChanged event is raised right after the event. + + + + + + MoveFocusRequested is raised when user tries to tab out of the WebView. + + + The focus of the WebView has not changed when this event is raised. + + + + + GotFocus is raised when WebView gets focus. + + + + + LostFocus is raised when WebView loses focus. + + + In the case where event is raised, the focus is still on WebView when event is raised. LostFocus is only raised afterwards when code of the app or default action of event sets focus away from WebView. + + + + + AcceleratorKeyPressed is raised when an accelerator key or key combo is pressed or released while the WebView is focused. + + + A key is considered an accelerator if either of the following conditions are true: + + + + Ctrl or Alt is currently being held. + + + The pressed key does not map to a character. + + + + A few specific keys are never considered accelerators, such as Shift. The Escape key is always considered an accelerator. + + Autorepeated key events caused by holding the key down will also raise this event. Filter out the auto-repeated key events by verifying or . + + In windowed mode, this event is synchronous. Until you set to true or the event handler returns, the browser process is blocked and outgoing cross-process COM calls will fail with RPC_E_CANTCALLOUT_ININPUTSYNCCALL. All methods work, however. + + In windowless mode, the event is asynchronous. Further input do not reach the browser until the event handler returns or is set to true, but the browser process is not blocked, and outgoing COM calls work normally. + + It is recommended to set to true as early as you are able to know that you want to handle the accelerator key. + + + + + Updates and properties at the same time. + + The bounds to be updated. + The zoom factor to be updated. + + This operation is atomic from the perspective of the host. After returning from this function, the and properties are both updated if the function is successful, or neither is updated if the function fails. If and are both updated by the same scale (for example, and are both doubled), then the page does not display a change in window.innerWidth or window.innerHeight and the WebView renders the content at the new size and zoom without intermediate renderings. This function also updates just one of or by passing in the new value for one and the current value for the other. + + + + + Tells WebView that the main WebView parent (or any ancestor) HWND moved. + + + This is a notification separate from . This is needed for accessibility and certain dialogs in WebView to work correctly. + + + + + Closes the WebView and cleans up the underlying browser instance. + + + Cleaning up the browser instance releases the resources powering the WebView. The browser instance is shut down if no other WebViews are using it. + + After running Close, all methods fail and event handlers stop running. Specifically, the WebView releases the associated references to any associated event handlers when Close is run. + + Close is implicitly run when the loses the final reference and is destructed. But it is best practice to explicitly run Close to avoid any accidental cycle of references between the WebView and the app code. Specifically, if you capture a reference to the WebView in an event handler you create a reference cycle between the WebView and the event handler. Run Close to break the cycle by releasing all event handlers. But to avoid the situation, it is best to both explicitly run Close on the WebView and to not capture a reference to the WebView to ensure the WebView is cleaned up correctly. Close is synchronous and won't trigger the beforeunload event. + + + + + Gets or sets the WebView default background color. + + + The `DefaultBackgroundColor` is the color that renders underneath all web content. This means WebView renders this color when there is no web content loaded such as before the initial navigation or between navigations. This also means web pages with undefined css background properties or background properties containing transparent pixels will render their contents over this color. Web pages with defined and opaque background properties that span the page will obscure the `DefaultBackgroundColor` and display normally. The default value for this property is white to resemble the native browser experience. Currently this API only supports opaque colors and transparency. It will fail for colors with alpha values that don't equal 0 or 255 ie. translucent colors are not supported. It also does not support transparency on Windows 7. On Windows 7, setting DefaultBackgroundColor to a Color with an Alpha value other than 255 will result in failure. On any OS above Win7, choosing a transparent color will result in showing hosting app content. This means webpages without explicit background properties defined will render web content over hosting app content. + This property may also be set via the `WEBVIEW2_DEFAULT_BACKGROUND_COLOR` environment variable. There is a known issue with background color where just setting the color by property can still leave the app with a white flicker before the `DefaultBackgroundColor` property takes effect. Setting the color via environment variable solves this issue. The value must be a hex value that can optionally prepend a 0x. The value must account for the alpha value which is represented by the first 2 digits. So any hex value fewer than 8 digits will assume a prepended 00 to the hex value and result in a transparent color. `DefaultBackgroundColor` will return the result of this environment variable even if it has not been set directly. This environment variable can only set the `DefaultBackgroundColor` once. Subsequent updates to background color must be done by setting the property. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="DefaultBackgroundColor"::: + + + + + Gets or sets the WebView rasterization scale. + + + The rasterization scale is the combination of the monitor DPI scale and text scaling set by the user. This value should be updated when the DPI scale of the app's top level window changes (i.e. monitor DPI scale changes or the window changes monitor) or when the text scale factor of the system changes. + Rasterization scale applies to the WebView content, as well as popups, context menus, scroll bars, and so on. Normal app scaling scenarios should use the property or method. + + + + + Determines whether the WebView will detect monitor scale changes. + + + ShouldDetectMonitorScaleChanges property determines whether the WebView attempts to track monitor DPI scale changes. When true, the WebView will track monitor DPI scale changes, update the property, and fire event. When false, the WebView will not track monitor DPI scale changes, and the app must update the property itself. event will never raise when ShouldDetectMonitorScaleChanges is false. Apps that want to set their own rasterization scale should set this property to false to avoid the WebView2 updating the property to match the monitor DPI scale. + + + + + Gets or sets the WebView bounds mode. + + + BoundsMode affects how setting the and properties work. Bounds mode can either be in mode or mode. + + + + + RasterizationScaleChanged is raised when the property changes. + + + The event is raised when the Webview detects that the monitor DPI scale has changed, is true, and the Webview has changed the property. + + + + + + Gets or sets the WebView allow external drop property. + + + The AllowExternalDrop is to configure the capability that dropping files into webview2 is allowed or permitted. The default value is true. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="ToggleAllowExternalDrop"::: + + + + + Used to manage profile options that created by . + + + Used to manage profile options that created by . + + + + + Manages the value of the controller's script locale. + + + The ScriptLocale property is to specify the default script + locale. It sets the default locale for all Intl JavaScript APIs and + other JavaScript APIs that depend on it, namely + Intl.DateTimeFormat() which affects string formatting like in + the time/date formats.The intended locale value is in the format of + BCP 47 Language Tags. More information can be found from [IETF + BCP47](https://www.ietf.org/rfc/bcp/bcp47.html ). The default value + for ScriptLocale will be depend on the WebView2 language and OS + region. If the language portions of the WebView2 language and OS + region match, then it will use the OS region. Otherwise, it will use + the WebView2 language. + + + OS Region + WebView2 Language + Default WebView2 ScriptLocale + + + en-GB + en-US + en-GB + + + es-MX + en-US + en-US + + + en-US + en-GB + en-US + + + You can set the ScriptLocale to the empty string to get the default ScriptLocale value. + Use OS specific APIs to determine the OS region to use with this property if you always want to match with the OS + region. For example: + + CultureInfo cultureInfo = Thread.CurrentThread.CurrentCulture; + return cultureInfo.Name + + + + + + Manage the name of the controller's profile. + + + The ProfileName property is to specify a profile name, which is only allowed to contain the following ASCII characters. It has a maximum length of 64 characters excluding the null-terminator. It is ASCII case insensitive. + + * alphabet characters: a-z and A-Z + * digit characters: 0-9 + * and '#', '@', '$', '(', ')', '+', '-', '_', '~', '.', ' ' (space). + + Note: the text must not end with a period '.' or ' ' (space). And, although upper-case letters are allowed, they're treated just as lower-case counterparts because the profile name will be mapped to the real profile directory path on disk and Windows file system handles path names in a case-insensitive way. + + + + + Manage the controller's InPrivate mode. + + + + + Provides a set of properties that are used to manage a . + + + + + Converts this to a System.Net.Cookie. + + + An object whose , , , , , , and , matches + those , , , + , , , and of this object. + + + The values of the properties other than those + specified above remain their default values. + + + + + + The expiration date and time for the cookie since the UNIX epoch. + + + Setting the Expires property to + makes this a session cookie, which is its default value. + + + + + Get or sets the cookie name. + + + + + Gets or sets the cookie value. + + + + + Gets the domain for which the cookie is valid. + + + The default value is the host that this cookie has been received from. Note that, for instance, .bing.com, bing.com, and www.bing.com are considered different domains. + + + + + Gets the path for which the cookie is valid. + + + The default value is "/", which means this cookie will be sent to all pages on the . + + + + + Determines whether this cookie is http-only. + + + + + Determines the SameSite status of the cookie which represents the enforcement mode of the cookie. + + + The default value is . + + + + + Gets or sets the security level of this cookie. + + + + + Determines whether this is a session cookie. The default value is false. + + + + + Creates, adds or updates, gets, or or view the cookies. + + + The changes would apply to the context of the user profile. That is, other WebViews under the same user profile could be affected. + + + + + Creates a CoreWebView2Cookie object whose params matches those of the given System.Net.Cookie. + + + A System.Net.Cookie whose params to be used to create a CoreWebView2Cookie. + + + An object whose , , , , , , and , matches those , , , , , , and of the given object. + + + The default value for the + property of the returned object is + . + + + + + + Creates a cookie object with a specified name, value, domain, and path. + + + One can set other optional properties after cookie creation. This only creates a cookie object and it is not added to the cookie manager until you call . name that starts with whitespace(s) is not allowed. + + The name for the to be created. It cannot start with whitespace(s). + + + + + + + Creates a cookie whose params matches those of the specified cookie. + + + + + Gets a list of cookies matching the specific URI. + + + You can modify the cookie objects by calling , and the changes will be applied to the webview. + + If uri is empty string or null, all cookies under the same profile are returned. + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="GetCookies"::: + + + + + Adds or updates a cookie with the given cookie data; may overwrite cookies with matching name, domain, and path if they exist. + + The to be added or updated. + + This method will fail if the domain of the given cookie is not specified. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="AddOrUpdateCookie"::: + + + + + Deletes a cookie whose name and domain/path pair match those of the specified cookie. + + + + + Deletes cookies with matching name and uri. + + The name for the cookies to be deleted is required. + If uri is specified, deletes all cookies with the given name where domain and path match provided URI. + + + + Deletes cookies with matching name and domain/path pair. + + The name for the cookies to be deleted is required. + If domain is specified, deletes only cookies with the exact domain. + If path is specified, deletes only cookies with the exact path. + + + + Deletes all cookies under the same profile. + + + This could affect other WebViews under the same user profile. + + + + + Represents the registration of a custom scheme with the . + + + This allows the WebView2 app to be able to handle event for requests with the + specified scheme and be able to navigate the WebView2 to the custom + scheme. Once the environment is created, the registrations are valid and + immutable throughout the lifetime of the associated WebView2s' browser + process and any WebView2 environments sharing the browser process must be + created with identical custom scheme registrations, otherwise the + environment creation will fail. Any further attempts to register the same + scheme will fail during environment creation. The URIs of registered + custom schemes will be treated similar to http URIs for their origins. + They will have tuple origins for URIs with host and opaque origins for + URIs without host as specified in [7.5 Origin - HTML Living Standard](https://html.spec.whatwg.org/multipage/origin.html) For event, the cases of request + URIs and filter URIs with custom schemes will be normalized according to + generic URI syntax rules. Any non-ASCII characters will be preserved. The + registered custom schemes also participate in [CORS](https://developer.mozilla.org/docs/Web/HTTP/CORS) and adheres to + [CSP](https://developer.mozilla.org/docs/Web/HTTP/CSP). The app needs to + set the appropriate access headers in its event handler to allow CORS + requests. + + + custom-scheme-with-host://hostname/path/to/resource has origin of + custom-scheme-with-host://hostname. + custom-scheme-without-host:path/to/resource has origin of + custom-scheme-without-host:path/to/resource. + + + + + The name of the custom scheme to register. + + + + + Whether the sites with this scheme will be treated as a [Secure + Context](https://developer.mozilla.org/docs/Web/Security/Secure_Contexts) + like an HTTPS site. + + + + + Set this property to true if the URIs with this custom scheme + will have an authority component (a host for custom schemes). + Specifically, if you have a URI of the following form you should set the + HasAuthorityComponent value as listed. + + + + URI + Recommended HasAuthorityComponent value + + + custom-scheme-with-authority://host/path + true + + + custom-scheme-without-authority:path + false + + + + + When this property is set to true, the URIs with this scheme will + be interpreted as having a [scheme and + host](https://html.spec.whatwg.org/multipage/origin.html#concept-origin-tuple) + origin similar to an http URI. Note that the port and user information + are never included in the computation of origins for custom schemes. If + this property is set to false, URIs with this scheme will have an + [opaque + origin](https://html.spec.whatwg.org/multipage/origin.html#concept-origin-opaque) + similar to a data URI. This property is false by default. Note: + For custom schemes registered as having authority component, navigations + to URIs without authority of such custom schemes will fail. However, if + the content inside WebView2 references a subresource with a URI that + does not have an authority component, but of a custom scheme that is + registered as having authority component, the URI will be interpreted as + a relative path as specified in + [RFC3986](https://www.rfc-editor.org/rfc/rfc3986). For example, + custom-scheme-with-authority:path will be interpreted as + custom-scheme-with-authority://host/path. However, this behavior + cannot be guaranteed to remain in future releases so it is recommended + not to rely on this behavior. + + + + + List of origins that are allowed to issue requests with the custom + scheme, such as XHRs and subresource requests that have an Origin + header. + + + The origin of any request (requests that have the [Origin + header](https://developer.mozilla.org/docs/Web/HTTP/Headers/Origin)) to + the custom scheme URI needs to be in this list. No-origin requests are + requests that do not have an Origin header, such as link navigations, + embedded images and are always allowed. Note that cross-origin + restrictions still apply. From any opaque origin (Origin header is + null), no cross-origin requests are allowed. If the list is empty, no + cross-origin request to this scheme is allowed. Origins are specified as + a string in the format of scheme://host:port. The origins are + string pattern matched with * (matches 0 or more characters) and + ? (matches 0 or 1 character) wildcards just like the URI matching + in the + API. For example, http://*.example.com:80. + + Here's a set of examples of what is allowed or not: + + + + Request URI + Originating URL + AllowedOrigins + Allowed + + + custom-scheme:request + https://www.example.com + {"https://www.example.com"} + Yes + + + custom-scheme:request + https://www.example.com + {"https://*.example.com"} + Yes + + + custom-scheme:request + https://www.example.com + {"https://www.example2.com"} + No + + + custom-scheme-with-authority://host/path + custom-scheme-with-authority://host2 + {""} + No + + + custom-scheme-with-authority://host/path + custom-scheme-with-authority2://host + {"custom-scheme-with-authority2://*"} + Yes + + + custom-scheme-without-authority:path + custom-scheme-without-authority:path2 + {"custom-scheme-without-authority:*"} + No + + + custom-scheme-without-authority:path + custom-scheme-without-authority:path2 + {"*"} + Yes + + + + + + + Initializes a new instance of the CoreWebView2CustomSchemeRegistration + class. + + + The name of the custom scheme to register. + + + + + Represents a download operation. Gives access to a download's metadata and supports a user canceling, pausing, or resuming a download. + + + + + The estimated end time of the download. + + + + + The total bytes to receive count. + + + + + The URI of the download. + + + + + The Content-Disposition header value from the download's HTTP response. If none, the value is an empty string. + + + + + MIME type of the downloaded content. + + + + + The number of bytes that have been written to the download file. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="BytesReceivedChanged"::: + + + + + The absolute path to the download file, including file name. + + + Host can change this from . + + + + + The state of the download. A download can be in progress, interrupted, or completed. + + + See for descriptions of states. + + + + + The reason why connection with file host was broken. + + + See for descriptions of reasons. + + + + + Returns true if an interrupted download can be resumed. + + + Downloads with the following interrupt reasons may automatically resume without you calling any methods: , , . In these cases progress may be restarted with set to 0. + + + + + Event raised when the bytes received count is updated. + + + + + Event raised when the estimated end time changes. + + + + + Event raised when the state of the download changes. + + + Use to get the current state, and to get the reason if the download is interrupted. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="StateChanged"::: + + + + + Cancels the download. + + + If canceled, the default download dialog shows that the download was canceled. Host should use if download should be canceled without displaying the default download dialog. + + + + + Pauses the download. + + + If paused, the default download dialog shows that the download is paused. No effect if download is already paused. Pausing a download changes the state from in progress to interrupted, with interrupt reason set to . + + + + + Resumes a paused download. May also resume a download that was interrupted for another reason if returns true. + + + Resuming a download changes the state from interrupted to in progress. + + + + + This represents the WebView2 Environment. + + + WebViews created from an environment run on the Browser process specified with environment parameters and objects created from an environment should be used in the same environment. Using it in different environments are not guaranteed to be compatible and may fail. + + + + + + + + + + + + + + + + + + + Creates a WebView2 Environment using the installed or a custom WebView2 Runtime version. + + + The relative path to the folder that contains a custom version of WebView2 Runtime. + + To use a fixed version of the WebView2 Runtime, pass the + folder path that contains the fixed version of the WebView2 Runtime + to browserExecutableFolder. BrowserExecutableFolder supports both relative + (to the application's executable) and absolute file paths. To create WebView2 controls + that use the installed version of the WebView2 Runtime that exists on + user machines, pass a null or empty string to + browserExecutableFolder. In this scenario, the API tries to + find a compatible version of the WebView2 Runtime that is installed + on the user machine (first at the machine level, and then per user) + using the selected channel preference. The path of fixed version of + the WebView2 Runtime should not contain \Edge\Application\. When + such a path is used, the API fails with ERROR_NOT_SUPPORTED. + + + + The user data folder location for WebView2. + + The path is either an absolute file path or a relative file path + that is interpreted as relative to the compiled code for the + current process. The default user data folder {Executable File + Name}.WebView2 is created in the same directory next to the + compiled code for the app. WebView2 creation fails if the compiled + code is running in a directory in which the process does not have + permission to create a new directory. The app is responsible to + clean up the associated user data folder when it is done. + + + + Options used to create WebView2 Environment. + + As a browser process may be shared among WebViews, WebView creation + fails if the specified options does not match the options of + the WebViews that are currently running in the shared browser + process. + + + + + The default channel search order is the WebView2 Runtime, Beta, Dev, and + Canary. When an override WEBVIEW2_RELEASE_CHANNEL_PREFERENCE environment + variable or applicable releaseChannelPreference registry value is set to + 1, the channel search order is reversed. + + + To use a fixed version of the WebView2 Runtime, pass the relative + folder path that contains the fixed version of the WebView2 Runtime + to browserExecutableFolder. To create WebView2 controls that + use the installed version of the WebView2 Runtime that exists on + user machines, pass a null or empty string to + browserExecutableFolder. In this scenario, the API tries to + find a compatible version of the WebView2 Runtime that is installed + on the user machine (first at the machine level, and then per user) + using the selected channel preference. The path of fixed version of + the WebView2 Runtime should not contain \Edge\Application\. When + such a path is used, the API fails with the following error. + + + The , , and may be + overridden by values either specified in environment variables or in + the registry. + + + When creating a the following environment variables are verified. + + + + WEBVIEW2_BROWSER_EXECUTABLE_FOLDER + + + WEBVIEW2_USER_DATA_FOLDER + + + WEBVIEW2_ADDITIONAL_BROWSER_ARGUMENTS + + + WEBVIEW2_RELEASE_CHANNEL_PREFERENCE + + + + If browser executable folder or user data folder is specified in an + environment variable or in the registry, the specified or values are overridden. If additional browser + arguments are specified in an environment variable or in the + registry, it is appended to the corresponding value in the specified + . + + + While not strictly overrides, additional environment variables may be set. + + + + Value + Description + + + WEBVIEW2_WAIT_FOR_SCRIPT_DEBUGGER + + When found with a non-empty value, this indicates that the WebView + is being launched under a script debugger. In this case, the WebView + issues a Page.waitForDebugger CDP command that runs the + script inside the WebView to pause on launch, until a debugger + issues a corresponding Runtime.runIfWaitingForDebugger CDP + command to resume the runtime. + Note that this environment variable does not have a registry key equivalent. + + + + WEBVIEW2_PIPE_FOR_SCRIPT_DEBUGGER + + When found with a non-empty value, it indicates that the WebView is + being launched under a script debugger that also supports host apps + that use multiple WebViews. The value is used as the identifier for + a named pipe that is opened and written to when a new WebView is + created by the host app. The payload should match the payload of the + remote-debugging-port JSON target and an external debugger + may use it to attach to a specific WebView instance. The format of + the pipe created by the debugger should be + \\.\pipe\WebView2\Debugger\{app_name}\{pipe_name}, where the + following are true. + + + {app_name} is the host app exe file name, for example, WebView2Example.exe + {pipe_name} is the value set for WEBVIEW2_PIPE_FOR_SCRIPT_DEBUGGER + + + To enable debugging of the targets identified by the JSON, you must + set the WEBVIEW2_ADDITIONAL_BROWSER_ARGUMENTS environment + variable to send --remote-debugging-port={port_num}, where + the following is true. + + + {port_num} is the port on which the CDP server binds. + + + If both WEBVIEW2_PIPE_FOR_SCRIPT_DEBUGGER and + WEBVIEW2_ADDITIONAL_BROWSER_ARGUMENTS environment variables, + the WebViews hosted in your app and associated contents may exposed + to 3rd party apps such as debuggers. Note that this environment + variable does not have a registry key equivalent. + + + + + If none of those environment variables exist, then the registry is examined + next. + + + + [{Root}]\Software\Policies\Microsoft\Edge\WebView2\BrowserExecutableFolder "{AppId}"="" + + + [{Root}]\Software\Policies\Microsoft\Edge\WebView2\ReleaseChannelPreference "{AppId}"="" + + + [{Root}]\Software\Policies\Microsoft\Edge\WebView2\AdditionalBrowserArguments "{AppId}"="" + + + [{Root}]\Software\Policies\Microsoft\Edge\WebView2\UserDataFolder "{AppId}"="" + + + + Use a group policy under Administrative Templates > + Microsoft Edge WebView2 to configure browser executable folder + and release channel preference. + + + + Value + Description + + + ERROR_DISK_FULL + + In the unlikely scenario where some instances of WebView are open during a + browser update, the deletion of the previous WebView2 Runtime may be + blocked. To avoid running out of disk space, a new WebView creation fails + with this error if it detects that too many previous WebView2 + Runtime versions exist. + + + + COREWEBVIEW2_MAX_INSTANCES + + The default maximum number of WebView2 Runtime versions allowed is 20. + To override the maximum number of the previous WebView2 Runtime versions + allowed, set the value of the following environment variable. + + + + ERROR_PRODUCT_UNINSTALLED + + If the Webview depends upon an installed WebView2 Runtime version and it is + uninstalled, any subsequent creation fails with this error. + + + + + First verify with Root as HKLM and then HKCU. AppId is first set to + the Application User Model ID of the process, then if no corresponding + registry key, the AppId is set to the compiled code name of the process, + or if that is not a registry key then *. If an override registry key is + found, use the browserExecutableFolder and userDataFolder registry + values as replacements and append additionalBrowserArguments registry + values for the corresponding values in the provided . + + + + + + Gets the browser version info including channel name if it is not the stable channel or WebView2 Runtime. + + + The relative path to the folder that contains the WebView2 Runtime. + + + WebView2 Runtime installation is missing. + + + + + Gets the browser version info including channel name if it is not the stable channel or WebView2 Runtime. + + + The relative path to the folder that contains the WebView2 Runtime. + + + The environment options used to create the environment. + + + WebView2 Runtime installation is missing. + + + Browser version info includes channel name if it is not the WebView2 Runtime. + Channel names are Beta, Dev, and Canary. The format of the return string + matches the format of . + If an override exists for BrowserExecutableFolder, ReleaseChannels, + or ChannelSearchKind, the override is used. The presence of an override + can result in a different channel used than the one expected based on the environment + options object. BrowserExecutableFolder takes precedence over the + other options. See + for more details on overrides. If an override is not specified, then the + parameters passed to GetAvailableBrowserVersionString are used. + The method fails if the loader is unable to find an installed WebView2 + Runtime or non-stable Microsoft Edge installation. + + + + + Compares two instances of browser versions correctly and returns an integer that indicates whether the first instance is older, the same as, or newer than the second instance. + + + One of the version strings to compare. + + + The other version string to compare. + + + An integer that indicates whether the first instance is older, the same as, or newer than the second instance. + + + Value Type + Condition + + + Less than zero + version1 is older than version2. + + + Zero + version1 is the same as version2. + + + Greater than zero + version1 is newer than version2. + + + + + + + Creates a new object. + + The request URI. + The HTTP request method. + + The raw request header string delimited by CRLF (optional in last header). + + uri parameter must be absolute URI. It's also possible to create this object with null headers string and then use the to construct the headers line by line. + + + + + + Creates a new object, + which can be passed as a parameter in and function for multiple profiles + support. + + + A that can be + passed when calling and . + + + The options is a settable property while the default for profile + name is an empty string and the default value for is + false. The profile will be created on disk or opened when calling + CreateCoreWebView2ControllerWithOptions no matter InPrivate mode is + enabled or not, and it will be released in memory when the + corresponding is closed but + still remain on disk. As WebView2 is built on top of Edge browser, + it follows Edge's behavior pattern. To create an InPrivate WebView, + we get an off-the-record profile (an InPrivate profile) from a + regular profile, then create the WebView with the off-the-record + profile. Also the profile name can be reused. + + + + + Asynchronously creates a new object. + + The HWND in which the WebView should be displayed and from which receive input. + + The options contains profileName and inPrivate parameters that could be used to create CoreWebView2Profile, and it can be used to create multiple WebViews with multiple profiles under a single user data directory. + + + Multiple profiles under single user data directory can share some system resources including memory, CPU footprint, disk space (such as compiled shaders and safebrowsing data) etc. + + + + + Asynchronously creates a new object. + + The HWND in which the WebView should be displayed and from which receive input. + + The options contains profileName and inPrivate parameters that could be used to create CoreWebView2Profile, and it can be used to create multiple WebViews with multiple profiles under a single user data directory. + + + Multiple profiles under single user data directory can share some system resources including memory, CPU footprint, disk space (such as compiled shaders and safebrowsing data) etc. + + + + + Set the path of the folder containing the `WebView2Loader.dll`. + + The path of the folder containing the `WebView2Loader.dll`. + + Thrown when `WebView2Loader.dll` has been successfully loaded. + + + This function allows you to set the path of the folder containing the `WebView2Loader.dll`. This should be the path of a folder containing `WebView2Loader.dll` and not a path to the `WebView2Loader.dll` file itself. + Note that the WebView2 SDK contains multiple `WebView2Loader.dll` files for different CPU architectures. When specifying folder path, you must specify one containing a `WebView2Loader.dll` module with a CPU architecture matching the current process CPU architecture. + This function is used to load the `WebView2Loader.dll` module during calls to any other static methods on `CoreWebView2Environment`. So, the path should be specified before any other API is called in `CoreWebView2Environment` class. Once `WebView2Loader.dll` is successfully loaded this function will throw an InvalidOperationException exception. + The path can be relative or absolute. Relative paths are relative to the path of the `Microsoft.Web.WebView2.Core.dll` module. + If the `WebView2Loader.dll` file does not exist in that path or LoadLibrary cannot load the file, or LoadLibrary fails for any other reason, an exception corresponding to the LoadLibrary failure is thrown when any other API is called in `CoreWebView2Environment` class. For instance, if the file cannot be found a `DllNotFoundException` exception will be thrown. + + + + + Gets the browser version info of the current , including channel name if it is not the stable channel. + + + It matches the format of the method. Channel names are beta, dev, and canary. + + + + + NewBrowserVersionAvailable is raised when a newer version of the WebView2 Runtime is installed and available using WebView2. + + + To use the newer version of the browser you must create a new environment and WebView. The event is only raised for new version from the same WebView2 Runtime from which the code is running. When not running with installed WebView2 Runtime, no event is raised. + + Because a user data folder is only able to be used by one browser process at a time, if you want to use the same user data folder in the WebViews using the new version of the browser, you must close the environment and instance of WebView that are using the older version of the browser first. Or simply prompt the user to restart the app. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="SubscribeToNewBrowserVersionAvailable"::: + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="NewBrowserVersionAvailable"::: + + + + + Asynchronously creates a new WebView. + + The HWND in which the WebView should be displayed and from which receive input. + + The WebView adds a child window to the provided window during WebView creation. Z-order and other things impacted by sibling window order are affected accordingly. + + + HWND_MESSAGE is a valid parameter for ParentWindow for an invisible WebView for Windows 8 and above. In this case the window will never become visible. You are not able to reparent the window after you have created the WebView. This is not supported in Windows 7 or below. Passing this parameter in Windows 7 or below will return ERROR_INVALID_WINDOW_HANDLE in the controller callback. + + + + It can also accept a which is created by as the second parameter for multiple profiles support. As WebView2 is built on top of Edge browser, it follows Edge's behavior pattern. To create an InPrivate WebView, we gets an off-the-record profile (an InPrivate profile) from a regular profile, then create the WebView with the off-the-record profile. Multiple profiles under single user data directory can share some system resources including memory, CPU footprint, disk space (such as compiled shaders and safebrowsing data) etc. + + + + It is recommended that the application set Application User Model ID for the process or the application window. If none is set, during WebView creation a generated Application User Model ID is set to root window of ParentWindow. + + + + It is recommended that the app handles restart manager messages, to gracefully restart it in the case when the app is using the WebView2 Runtime from a certain installation and that installation is being uninstalled. For example, if a user installs a version of the WebView2 Runtime and opts to use another version of the WebView2 Runtime for testing the app, and then uninstalls the 1st version of the WebView2 Runtime without closing the app, the app restarts to allow un-installation to succeed. + + + + When the app retries CreateCoreWebView2ControllerAsync upon failure, it is recommended that the app restarts from creating a new WebView2 Environment. If a WebView2 Runtime update happens, the version associated with a WebView2 Environment may have been removed and causing the object to no longer work. Creating a new WebView2 Environment works since it uses the latest version. + + + + WebView creation fails if a running instance using the same user data folder exists, and the Environment objects have different . For example, if a WebView was created with one , an attempt to create a WebView with a different using the same user data folder fails. + + + + WebView creation can fail with `E_UNEXPECTED` if runtime does not have permissions to the user data folder. + + + + + + Creates a new object. + + HTTP response content as stream. + The HTTP response status code. + The HTTP response reason phrase. + The raw response header string delimited by newline. + + It is also possible to create this object with empty headers string and then use the to construct the headers line by line. + + + + + + Asynchronously creates a new WebView for use with visual hosting. + + The HWND in which the app will connect the visual tree of the WebView. + + ParentWindow will be the HWND that the app will receive pointer/mouse input meant for the WebView (and will need to use or to forward). If the app moves the WebView visual tree to underneath a different window, then it needs to set to update the new parent HWND of the visual tree. + + Set property on the created to provide a visual to host the browser's visual tree. + + It is recommended that the application set Application User Model ID for the process or the application window. If none is set, during WebView creation a generated Application User Model ID is set to root window of ParentWindow. + + It can also accept a which is created by as the second parameter for multiple profiles support. + + CreateCoreWebView2CompositionController is supported in the following versions of Windows: + + + Windows 11 + + + Windows 10 + + + Windows Server 2019 + + + Windows Server 2016 + + + + + + + Creates an empty . + + + The returned needs to be populated with all of the relevant info before calling . + + + + + BrowserProcessExited is raised when the collection of WebView2 Runtime processes for the browser process of this terminate due to browser process failure or normal shutdown (for example, when all associated WebViews are closed), after all resources have been released (including the user data folder). + + + Multiple app processes can share a browser process by creating their webviews from a with the same user data folder. When the entire collection of WebView2Runtime processes for the browser process exit, all associated objects receive the BrowserProcessExited event. Multiple processes sharing the same browser process need to coordinate their use of the shared user data folder to avoid race conditions and unnecessary waits. For example, one process should not clear the user data folder at the same time that another process recovers from a crash by recreating its WebView controls; one process should not block waiting for the event if other app processes are using the same browser process (the browser process will not exit until those other processes have closed their webviews too). + + Note this is an event from , not . The difference between BrowserProcessExited and is that BrowserProcessExited is raised for any browser process exit (expected or unexpected, after all associated processes have exited too), while is raised for unexpected process exits of any kind (browser, render, GPU, and all other types), or for main frame render process unresponsiveness. To learn more about the WebView2 Process Model, go to [Process model](/microsoft-edge/webview2/concepts/process-model). + + In the case the browser process crashes, both BrowserProcessExited and events are raised, but the order is not guaranteed. These events are intended for different scenarios. It is up to the app to coordinate the handlers so they do not try to perform reliability recovery while also trying to move to a new WebView2 Runtime version or remove the user data folder. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="SubscribeToBrowserProcessExited"::: + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="BrowserProcessExited"::: + + + + + Creates the used by the method. + + + + + Gets the user data folder that all CoreWebView2s created from this environment are using. + + + This could be either the value passed in by the developer when creating the environment object or the calculated one for default handling. And will always be an absolute path. + + + + + ProcessInfosChanged is raised when a collection of WebView2 Runtime processes changed due to new process being detected or when a existing process gone away. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="ProcessInfosChanged"::: + + + + + Returns the list of all using same user data folder except for crashpad process. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="GetProcessInfos"::: + + + + + Create a custom object to insert into the WebView context menu. + + + CoreWebView2 will rewind the icon stream before decoding. + There is a limit of 1000 active custom context menu items at a given time per . Attempting to create more before deleting existing ones will fail with ERROR_NOT_ENOUGH_QUOTA. It is recommended to reuse custom ContextMenuItems across CoreWebView2ContextMenuRequested events for performance. The created object's property will default to true and property will default to false. A will be assigned that's unique across active custom context menu items, but command ID values of deleted custom ContextMenuItems can be reassigned. + + + + + Gets the failure report folder that all CoreWebView2s created from this environment are using. + + + + + Create a shared memory based buffer with the specified size in bytes. + + + The buffer can be shared with web contents in WebView by calling or . + Once shared, the same content of the buffer will be accessible from both the app process and script in WebView. + Modification to the content will be visible to all parties that have access to the buffer. + The shared buffer is presented to the script as ArrayBuffer. All JavaScript APIs that work for ArrayBuffer including Atomics APIs can be used on it. + There is currently a limitation that only size less than 2GB is supported. + + + + + Returns a snapshot collection of corresponding to all currently running processes associated with this excludes crashpad process. This provides the same list of as what's provided in , but additionally provides a list of associated which are actively running (showing or hiding UI elements) in the renderer process. See for more information. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="GetProcessExtendedInfos"::: + + + + + Creates a object from a path that represents a Web [FileSystemFileHandle](https://developer.mozilla.org/docs/Web/API/FileSystemFileHandle). + + The path pointed by the file. + This must be a syntactically correct fully qualified path, but it is not checked here whether it currently points to a file. If an invalid path is passed, an `InvalidArgumentException` will be thrown. Any other state validation will be done when this handle is accessed from web content and will cause the DOM exceptions described in [FileSystemFileHandle methods](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle#instance_methods) if access operations fail + + + This is used to specify whether the Handle should be created with a Read-only or Read-and-write web permission. + For the `permission` value specified here, the DOM [PermissionStatus](https://developer.mozilla.org/docs/Web/API/PermissionStatus) property will be `[granted](https://developer.mozilla.org/docs/Web/API/PermissionStatus/state)` and the unspecified permission will be `[prompt](https://developer.mozilla.org/docs/Web/API/PermissionStatus/state)`. Therefore, the web content then does not need to call [requestPermission](https://developer.mozilla.org/docs/Web/API/FileSystemHandle/requestPermission) for the permission that was specified before attempting the permitted operation, but if it does, the promise will immediately be resolved with 'granted' PermissionStatus without firing the event or prompting the user for permission. Otherwise, `requestPermission` will behave as the status of permission is currently `prompt`, which means the `PermissionRequested` event will fire or the user will be prompted. + Note: An exception to this is, if there is a parent directory handle that has broader permissions in the same page context than specified in here, the handle will automatically inherit the most permissive permission of the parent handle when posted to that page context. i.e. If there is already a `FileSystemDirectoryHandle` to `C:\foo` that has write permission on a page, even though a to file `C:\example\file.txt` may be created with permission, when posted to that page, write permission will be automatically granted to the created handle. + Additionally, the app must have the same OS permissions that have propagated to the [WebView2 browser process](/microsoft-edge/webview2/concepts/process-model) for the path it wishes to give the web content to read/write the file. Specifically, the WebView2 browser process will run in same user, package identity, and app container of the app, but other means such as security context impersonations do not get propagated, so such permissions that the app has, will not be effective in WebView2. + + + + An app needs to be mindful that this object, when posted to the web content, provides it with unusual access to OS file system via the Web FileSystem API! The app should therefore only post objects for paths that it wants to allow access to the web content and it is not recommended that the web content "asks" for this path. The app should also check the source property of the target to ensure that it is sending to the web content of intended origin. Once the object is passed to web content, if the content is attempting a read, the file must be existing and available to read similar to a file chosen by [open file picker](https://developer.mozilla.org/docs/Web/API/Window/showOpenFilePicker), otherwise the read operation will [throw a DOM exception](https://developer.mozilla.org/docs/Web/API/FileSystemFileHandle/getFile#exceptions). For write operations, the file does not need to exist as `FileSystemFileHandle` will behave as a file path chosen by [save file picker](https://developer.mozilla.org/docs/Web/API/Window/showSaveFilePicker) and will create or overwrite the file, but the parent directory structure pointed by the file must exist and an existing file must be available to write and delete or the write operation will [throw a DOM exception](https://developer.mozilla.org/docs/Web/API/FileSystemFileHandle/createWritable#exceptions). + + + + + Creates a object from a path that represents a Web [FileSystemDirectoryHandle](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle). + + The path pointed by the directory. + + This must be a syntactically correct fully qualified path, but it is not checked here whether it currently points to a directory. Any other state validation will be done when this handle is accessed from web content and will cause DOM exceptions if access operations fail. If an invalid path is passed, an `InvalidArgumentException` will be thrown. + + + This is used to specify whether the Handle should be created with a Read-only or Read-and-write web permission. + For the permission value specified here, the Web [PermissionStatus](https://developer.mozilla.org/docs/Web/API/PermissionStatus) will be `[granted](https://developer.mozilla.org/docs/Web/API/PermissionStatus/state)` and the unspecified permission will be `[prompt](https://developer.mozilla.org/docs/Web/API/PermissionStatus/state)`. Therefore, the web content then does not need to call [requestPermission](https://developer.mozilla.org/docs/Web/API/FileSystemHandle/requestPermission) for the permission that was specified before attempting the permitted operation, but if it does, the promise will immediately be resolved with 'granted' PermissionStatus without firing the WebView2 event or prompting the user for permission. Otherwise, `requestPermission` will behave as the status of permission is currently `Prompt`, which means the `PermissionRequested` event will fire or the user will be prompted. + Note: An exception to this is, if there is a parent directory handle that has broader permissions in the same page context than specified in here, the handle will automatically inherit the most permissive permission of the parent handle when posted to that page context. i.e. If there is already a `FileSystemDirectoryHandle` to `C:\foo` that has write permission on a page, even though a to directory `C:\example\directory` may be created with permission, when posted to that page, write permission will be automatically granted to the created handle. + Additionally, the app must have the same OS permissions that have propagated to the [WebView2 browser process](/microsoft-edge/webview2/concepts/process-model) for the path it wishes to give the web content to make any operations on the directory. Specifically, the WebView2 browser process will run in same user, package identity, and app container of the app, but other means such as security context impersonations do not get propagated, so such permissions that the app has, will not be effective in WebView2. + + + + An app needs to be mindful that this object, when posted to the web content, provides it with unusual access to OS file system via the Web FileSystem API! The app should therefore only post objects for paths that it wants to allow access to the web content and it is not recommended that the web content "asks" for this path. The app should also check the source property of the target to ensure that it is sending to the web content of intended origin. Once the object is passed to web content, the path must point to a directory as if it was chosen via [directory picker](https://developer.mozilla.org/docs/Web/API/Window/showDirectoryPicker) otherwise any IO operation done on the `FileSystemDirectoryHandle` will throw a DOM exception. + + + + + Options used to create WebView2 Environment. + + + Default values will use your defaulted Edge WebView2 Runtime binaries and + user data folder. + + + + + + + + + + + + + Initializes a new instance of the CoreWebView2EnvironmentOptions class. + + + AdditionalBrowserArguments can be specified to change the behavior of + the WebView. + + + The default language that WebView will run with. + + + The version of the Edge WebView2 Runtime binaries required to be + compatible with the calling application. + + + Set to true if single sign on be enabled using the end user's OS primary + account. Defaults to false. + + + List of custom scheme registrations to be applied to the . + + + + + Initializes a new instance of the CoreWebView2EnvironmentOptions class. + + + AdditionalBrowserArguments can be specified to change the behavior of + the WebView. + + + The default language that WebView will run with. + + + The version of the Edge WebView2 Runtime binaries required to be + compatible with the calling application. + + + Set to true if single sign on be enabled using the end user's OS primary + account. Defaults to false. + + + List of custom scheme registrations to be applied to the . + + + Set to CoreWebView2ChannelSearchKind.LeastStable so that environment + creation searches for binaries from least to most stable: + Canary -> Dev -> Beta -> WebView2 Runtime. + Defaults to CoreWebView2RuntimeChannel.MostStable. + + + The release channels that are searched for during environment creation. + + + + + List of custom scheme registrations to be applied to the + + + + + Gets or sets the additional browser arguments to change the behavior of the WebView. + + + + The arguments are passed to the browser process as part of the command. For more information about using command-line switches with Chromium browser processes, navigate to [Run Chromium with Flags](https://aka.ms/RunChromiumWithFlags). The value appended to a switch is appended to the browser process, for example, in --edge-webview-switches=xxx the value is xxx. If you specify a switch that is important to WebView functionality, it is ignored, for example, --user-data-dir. Specific features are disabled internally and blocked from being enabled. If a switch is specified multiple times, only the last instance is used. + + + + A merge of the different values of the same switch is not attempted, except for disabled and enabled features. The features specified by --enable-features and --disable-features will be merged with simple logic: + + + + The features are the union of the specified features and built-in features. If a feature is disabled, it is removed from the enabled features list. + + + + + If you specify command-line switches and sets this property, the --edge-webview-switches value takes precedence and is processed last. If a switch fails to parse, the switch is ignored. The default state for the operation is to run the browser process with no extra flags. + + + Please note that calling this API twice will replace the previous value rather than appending to it. If there are multiple switches, there should be a space in between them. The one exception is if multiple features are being enabled/disabled for a single switch, in which case the features should be comma-separated. Ex. "--disable-features=feature1,feature2 --some-other-switch --do-something" + + + + + + Gets or sets the default display language for WebView. + + + It applies to browser UIs such as context menu and dialogs. It also applies to the accept-languages HTTP header that WebView sends to websites. The intended locale value is in the format of BCP 47 Language Tags. More information can be found from [IETF BCP47](https://www.ietf.org/rfc/bcp/bcp47.html). + + + + + Gets or sets the version of the WebView2 Runtime binaries required to be compatible with your app. + + + This defaults to the WebView2 Runtime version that corresponds with the version of the SDK the app is using. The format of this value is the same as the format of the property and other BrowserVersion values. Only the version part of the BrowserVersion value is respected. The channel suffix, if it exists, is ignored. The version of the WebView2 Runtime binaries actually used may be different from the specified TargetCompatibleBrowserVersion. The binaries are only guaranteed to be compatible. Verify the actual version on the property. + + + + + Determines whether to enable single sign on with Azure Active Directory (AAD) resources inside WebView using the logged in Windows account and single sign on (SSO) with web sites using Microsoft account associated with the login in Windows account. + + + The default value is false. Universal Windows Platform apps must also declare enterpriseCloudSSO [restricted capability](/windows/uwp/packaging/app-capability-declarations#restricted-capabilities) for the single sign on (SSO) to work. + + + + + Determines whether other processes can create from created with the same user data folder and therefore sharing the same WebView browser process instance. + + + The default value is false. + + + + + When IsCustomCrashReportingEnabled is set to true, Windows won't send crash data to Microsoft endpoint. + + + The default value is false. In this case, WebView will respect OS consent. + + + + + The EnableTrackingPrevention property is used to enable/disable tracking prevention feature in WebView2. This property enable/disable tracking prevention for all the WebView2's created in the same environment. By default this feature is enabled to block potentially harmful trackers and trackers from sites that aren't visited before and set to or whatever value was last changed/persisted on the profile. + + + You can set this property to false to disable the tracking prevention feature if the app only renders content in the WebView2 that is known to be safe. Disabling this feature when creating environment also improves runtime performance by skipping related code. + + You shouldn't disable this property if WebView2 is being used as a "full browser" with arbitrary navigation and should protect end user privacy. + + There is property to control levels of tracking prevention of the WebView2's associated with a same profile. However, you can also disable tracking prevention later using property and value but that doesn't improves runtime performance. + + See for more details. + + Tracking prevention protects users from online tracking by restricting the ability of trackers to access browser-based storage as well as the network. See [Tracking prevention](/microsoft-edge/web-platform/tracking-prevention). + + + + + Enable/disable browser extensions. + + + When AreBrowserExtensionsEnabled is set to true, new extensions can be added to user profile and used. AreBrowserExtensionsEnabled is default to be false, in this case, new extensions can't be installed, and already installed extension won't be available to use in user profile. If connecting to an already running environment with a different value for AreBrowserExtensionsEnabled property, it will fail with HRESULT_FROM_WIN32(ERROR_INVALID_STATE). See for Extensions API details. + + + + + Set ChannelSearchKind to CoreWebView2ChannelSearchKind.LeastStable so that the WebView2 loader searches for binaries from least to most stable: Canary -> Dev -> Beta -> WebView2 Runtime. + + + The ChannelSearchKind property is CoreWebView2ChannelSearchKind.MostStable by default and environment creation searches for a release channel on the machine from most to least stable using the first channel found. The default search order is: WebView2 Release -> Beta -> Dev -> Canary. Set ChannelSearchKind to CoreWebView2ChannelSearchKind.LeastStable to reverse the search order so that environment creation searches for a channel from least to most stable. If a ReleaseChannels has been provided, environment creation will only search for channels in the set. See for more details on channels. This property can be overridden by the corresponding registry key ChannelSearchKind or the environment variable WEBVIEW2_CHANNEL_SEARCH_KIND. Set the value to 1 to reverse the search order. See for more details on overrides. + + + + + Sets the ReleaseChannels, which is a mask of one or more CoreWebView2ReleaseChannels indicating which channels environment creation should search for. + + + OR operation(s) can be applied to multiple CoreWebView2ReleaseChannels to create a mask. The default value is a mask of all the channels. By default, environment creation searches for channels from most to least stable, using the first channel found on the device. When ReleaseChannels is provided, environment creation will only search for the channels specified in the set. Set ChannelSearchKind to CoreWebView2ChannelSearchKind.LeastStable to reverse the search order so that environment creation searches for the least stable build first. See for descriptions of each channel. Environment creation fails if it is unable to find any channel from the ReleaseChannels installed on the device. Use to verify which channel is used. If both a BrowserExecutableFolder and ReleaseChannels are provided, the BrowserExecutableFolder takes precedence. The ReleaseChannels can be overridden by the corresponding registry override ReleaseChannels or the environment variable WEBVIEW2_RELEASE_CHANNELS. Set the value to a comma-separated string of integers, which map to the following release channel values: Stable (0), Beta (1), Dev (2), and Canary (3). For example, the values "0,2" and "2,0" indicate that environment creation should only search for Dev channel and the WebView2 Runtime, using the order indicated by . Environment creation attempts to interpret each integer and treats any invalid entry as Stable channel. + + + + ReleaseChannels + Channel Search Kind: Most Stable (default) + Channel Search Kind: Least Stable + + + CoreWebView2ReleaseChannels.Beta | CoreWebView2ReleaseChannels.Stable + WebView2 Runtime -> Beta + Beta -> WebView2 Runtime + + + CoreWebView2ReleaseChannels.Canary | CoreWebView2ReleaseChannels.Dev | CoreWebView2ReleaseChannels.Beta | CoreWebView2ReleaseChannels.Stable + WebView2 Runtime -> Beta -> Dev -> Canary + Canary -> Dev -> Beta -> WebView2 Runtime + + + CoreWebView2ReleaseChannels.Canary + Canary + Canary + + + CoreWebView2ReleaseChannels.Beta | CoreWebView2ReleaseChannels.Canary | CoreWebView2ReleaseChannels.Stable + WebView2 Runtime -> Beta -> Canary + Canary -> Beta -> WebView2 Runtime + + + + + + + Set ScrollBar style to be used. + + + The default is CoreWebView2ScrollbarStyle.Default which specifies the default browser ScrollBar style. CSS styles that modify the ScrollBar applied on top of native ScrollBar styling that is selected with CoreWebView2ScrollbarStyle. + + + + + CoreWebView2Frame provides direct access to the iframes information and handling. + + + CoreWebView2Frame provides direct access to the iframes information and handling. You can get a CoreWebView2Frame by handling the event. + + + CoreWebView2Frame provides direct access to the iframes information and handling. You can get a CoreWebView2Frame by handling the event. + + + CoreWebView2Frame provides direct access to the iframes information and handling. You can get a CoreWebView2Frame by handling the event. + + + CoreWebView2Frame provides direct access to the iframes information and handling. You can get a CoreWebView2Frame by handling the event. + + + CoreWebView2Frame provides direct access to the iframes information and handling. You can get a CoreWebView2Frame by handling the event. + + + CoreWebView2Frame provides direct access to the iframes information and handling. You can get a CoreWebView2Frame by handling the event. + + + + + Adds the provided host object to script running in the WebViewFrame with the specified name for the list of the specified origins. + The host object will be accessible for this iframe only if the iframe's origin during + access matches one of the origins which are passed. The provided origins + will be normalized before comparing to the origin of the document. + So the scheme name is made lower case, the host will be punycode decoded + as appropriate, default port values will be removed, and so on. + This means the origin's host may be punycode encoded or not and will match + regardless. If list contains malformed origin the call will fail. + The method can be called multiple times in a row without calling + RemoveHostObjectFromScript for the same object name. It will replace + the previous object with the new object and new list of origins. + List of origins will be treated as following: + 1. empty list - call will succeed and object will be added for the iframe + but it will not be exposed to any origin; + 2. list with origins - during access to host object from iframe the + origin will be checked that it belongs to this list; + 3. list with "*" element - host object will be available for iframe for + all origins. We suggest not to use this feature without understanding + security implications of giving access to host object from from iframes + with unknown origins. + 4. list with "file://" element - host object will be available for iframes + loaded via file protocol. + + + The name of the host object. + + + The host object to be added to script. + + + The list of the iframe origins for which host object will be accessible. + + + + + + The value of iframe's window.name property. The default value equals to iframe html tag declaring it. + + + + + NameChanged is raised when the iframe changes its window.name property. + + + + + + Destroyed event is raised when the iframe corresponding to this object is removed or the document containing that iframe is destroyed. + + + + + + Remove the host object specified by the name so that it is no longer accessible from JavaScript code in the iframe. + + + While new access attempts are denied, if the object is already obtained by JavaScript code in the iframe, the JavaScript code continues to have access to that object. Calling this method for a name that is already removed or was never added fails. If the iframe is destroyed this method will return fail also. + + + + + Check whether a frame is destroyed. Returns true during the event. + + + + + NavigationStarting is raised when the current frame is requesting permission to navigate to a different URI. + + + A frame navigation will raise a event and a event. All of the event handlers will be run before the event handlers. All of the event handlers share a common object. Whichever event handler is last to change the property will decide if the frame navigation will be cancelled. + Redirects raise this event as well, and the navigation id is the same as the original one. You may block corresponding navigations until the event handler returns. + + + + + ContentLoading is raised before any content is loaded, including scripts added with . ContentLoading is not raised if a same page navigation occurs. + + + This operation follows the event and precedes the and events. + + + + + NavigationCompleted is raised when the current frame has completely loaded (body.onload has been raised) or loading stopped with error. + + + + + DOMContentLoaded is raised when the initial HTML document has been parsed. + + + This aligns with the the document's DOMContentLoaded event in HTML. + + + + + WebMessageReceived is raised when the setting is set and the iframe runs window.chrome.webview.postMessage. + + + The postMessage function is void postMessage(object) where object is any object supported by JSON conversion. + When postMessage is called, the handler's Invoke method will be called with the object parameter postMessage converted to a JSON string. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="WebMessageReceivedIFrame"::: + + + + + Runs JavaScript code from the javaScript parameter in the current frame. + + The JavaScript code to be run in the current frame. + A JSON encoded string that represents the result of running the provided JavaScript. + + A function that has no explicit return value returns undefined. If the script that was run throws an unhandled exception, then the result is also null. This method is applied asynchronously. + If the method is run before , the script will not be executed and the JSON null will be returned. + This operation works even if is set to false. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="ExecuteScriptFrame"::: + + + + + Posts the specified webMessageAsJson to the current frame. + + The web message to be posted to the iframe. + + The event args is an instance of MessageEvent. The setting must be true or the message will not be sent. The event arg's data property of the event arg is the webMessageAsJson string parameter parsed as a JSON string into a JavaScript object. The event arg's source property of the event arg is a reference to the window.chrome.webview object. For information about sending messages from the iframe to the host, navigate to . The message is sent asynchronously. If a navigation occurs before the message is posted to the iframe, the message is not be sent. + + + Runs the message event of the window.chrome.webview of the iframe. JavaScript in that document may subscribe and unsubscribe to the event using the following code: + + window.chrome.webview.addEventListener('message', handler) + window.chrome.webview.removeEventListener('message', handler) + + + + + + + + + Posts a message that is a simple string rather than a JSON string representation of a JavaScript object. + + The web message to be posted to the iframe. + + This behaves in exactly the same manner as , but the data property of the event arg of the window.chrome.webview message is a string with the same value as webMessageAsString. Use this instead of if you want to communicate using simple strings rather than JSON objects. + + + + + + + PermissionRequested is raised when content in an iframe or any of its descendant iframes requests permission to access some privileged resources. + + + This relates to the PermissionRequested event on the CoreWebView2. + Both these events will be raised in the case of an iframe requesting permission. The CoreWebView2Frame's event handlers will be invoked before the event handlers on the CoreWebView2. If the Handled property of the PermissionRequestedEventArgs is set to TRUE within the CoreWebView2Frame event handler, then the event will not be raised on the CoreWebView2, and it's event handlers will not be invoked. + In the case of nested iframes, the PermissionRequested event will be raised from the top level iframe. + If a deferral is not taken on the event args, the subsequent scripts are blocked until the event handler returns. If a deferral is taken, the scripts are blocked until the deferral is completed. + + + + + Share a shared buffer object with script of the iframe in the WebView. + + The object to be shared with script. + The desired given to script. + Additional data to be send to script. If it is not null or empty string, and it is not a valid JSON string, will be thrown. + + The script will receive a sharedbufferreceived event from chrome.webview. + The event arg for that event will have the following methods and properties. + + + + Property + Description + + + getBuffer() + A method that returns an ArrayBuffer object with the backing content from the shared buffer. + + + additionalData + An object as the result of parsing additionalDataAsJson as JSON string. This property will be undefined if additionalDataAsJson is nullptr or empty string. + + + source + With a value set as chrome.webview object. + + + + If access is , the script will only have read access to the buffer. + If the script tries to modify the content in a read only buffer, it will cause an access violation in WebView renderer process and crash the renderer process. + + If the shared buffer is already closed, the API throws with error code of RO_E_CLOSED. + The script code should call chrome.webview.releaseBuffer with the shared buffer as the parameter to release underlying resources as soon as it does not need access to the shared buffer any more. + + The application can post the same shared buffer object to multiple web pages or iframes, or post to the same web page or iframe multiple times. + Each PostSharedBufferToScript will create a separate ArrayBuffer object with its own view of the memory and is separately released. + The underlying shared memory will be released when all the views are released. + + Sharing a buffer to script has security risk. You should only share buffer with trusted site. + If a buffer is shared to a untrusted site, possible sensitive information could be leaked. + If a buffer is shared as modifiable by the script and the script modifies it in an unexpected way, it could result in corrupted data that might even crash the application. + + The example code shows how to send data to script for one time read only consumption. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="OneTimeShareBuffer"::: + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/assets/sharedBuffer.html" id="ShareBufferScriptCode_1"::: + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/assets/sharedBuffer.html" id="ShareBufferScriptCode_2"::: + + + + + The unique identifier of the current frame. It's the same kind of ID as with the and . + + + + + ScreenCaptureStarting event is raised when the [Screen Capture API](https://www.w3.org/TR/screen-capture/) is requested by the user using getDisplayMedia(). + + + This relates to the ScreenCaptureStarting event on the CoreWebView2. + Both these events will be raised in the case of an iframe requesting screen capture. The CoreWebView2Frame's event handlers will be invoked before the event handlers on the CoreWebView2. If the Handled property of the ScreenCaptureStartingEventArgs is set to TRUE within the CoreWebView2Frame event handler, then the event will not be raised on the CoreWebView2, and it's event handlers will not be invoked. + In the case of nested iframes, the ScreenCaptureStarting event will be raised from the top level iframe. + If a deferral is not taken on the event args, the subsequent scripts are blocked until the event handler returns. If a deferral is taken, the scripts are blocked until the deferral is completed. + + + + + + Iterator for a collection of HTTP headers. + + + + + + + + + + No COM support; throws instead. + + + No COM support. + + + + + + + + Gets the header in the + or collection at the + current position of the enumerator. + + + + + + true when the iterator has not run out of headers. + + + If the collection over which the iterator is iterating is empty or if the iterator has gone past the end of the collection then this is false. + + + + + HTTP request headers. + + + Used to inspect the HTTP request on event and event. It is possible to modify the HTTP request headers from a event, but not from a event. + + + + + + + + + + + + + Returns an enumerator that iterates through the or collection. + + + + + Gets the header value matching the name. + + The header value matching the name. + + + + Gets the header value matching the name using a . + + The header value matching the name. + + + + Checks whether the headers contain an entry that matches the header name. + + Whether the headers contain an entry that matches the header name. + + + + Adds or updates header that matches the name. + + + + + Removes header that matches the name. + + + + + Gets a over the collection of request headers. + + + + + HTTP response headers. + + + Used to construct a for the event. + + + + + + + + + + + Returns an enumerator that iterates through the or collection. + + + + + Appends header line with name and value. + + The header name to be appended. + The header value to be appended. + + + + Checks whether this CoreWebView2HttpResponseHeaders contain entries matching the header name. + + The name of the header to seek. + + + + Gets the first header value in the collection matching the name. + + The header name. + The first header value in the collection matching the name. + + + + Gets the header values matching the name. + + The header name. + + + + Gets a over the collection of entire . + + + + + Event args for the CoreWebView2InitializationCompleted event. + + + + + Initializes a new instance of the CoreWebView2InitializationCompletedEventArgs class. + + + Exception that occurred during initialization, or null if initialization was successful. + + + + + True if the init task completed successfully. + + + + + The exception thrown from the init task. If the task completed successfully, this property is null. + + + + + An object that represents a [HTML Notification object](https://developer.mozilla.org/docs/Web/API/Notification). + + + + + Specifies the time at which a notification is created or applicable + (past, present, or future). + + + + + Gets the vibration pattern for devices with vibration hardware to emit. + + + The vibration pattern can be represented by an array of 64-bit + unsigned integers describing a pattern of vibrations and pauses. See + [Vibration API](https://developer.mozilla.org/docs/Web/API/Vibration_API) for + more information. This corresponds to + [Notification.vibrate](https://developer.mozilla.org/docs/Web/API/Notification/vibrate) + DOM API. An empty list is returned if no vibration patterns are + specified. + + + + + A string representing the body text of the notification. + + + The default value is an empty string. + + + + + The text direction in which to display the notification. + + + This corresponds to [Notification.dir](https://developer.mozilla.org/docs/Web/API/Notification/dir) DOM API. The default value is . + + + + + The notification's language, as intended to be specified using a string representing a language tag (such as en-US) according to [BCP47](https://datatracker.ietf.org/doc/html/rfc5646). + + + Note that no validation is performed on this property and it can be any string the notification sender specifies. This corresponds to [Notification.lang](https://developer.mozilla.org/docs/Web/API/Notification/lang) DOM API. The default value is an empty string. + + + + + A string representing an identifying tag for the notification. + + + This corresponds to [Notification.tag](https://developer.mozilla.org/docs/Web/API/Notification/tag) DOM API. The default value is an empty string. + + + + + A string containing the URI of an icon to be displayed in the notification. + + + The default value is an empty string. + + + + + The title of the notification. + + + + + A string containing the URI of the image used to represent the notification when there isn't enough space to display the notification itself. + + + The default value is an empty string. + + + + + A string containing the URI of an image to be displayed in the notification. + + + The default value is an empty string. + + + + + Indicates whether the user should be notified after a new notification replaces an old one. + + + This corresponds to [Notification.renotify](https://developer.mozilla.org/docs/Web/API/Notification/renotify) DOM API. The default value is false. + + + + + A boolean value indicating that a notification should remain active until the user clicks or dismisses it, rather than closing automatically. + + + This corresponds to [Notification.requireInteraction](https://developer.mozilla.org/docs/Web/API/Notification/requireInteraction) DOM API. Note that you may not be able to necessarily implement this due to native API limitations. The default value is false. + + + + + Indicates whether the notification should be silent -- i.e., no sounds or vibrations should be issued, regardless of the device settings. + + + This corresponds to [Notification.silent](https://developer.mozilla.org/docs/Web/API/Notification/silent) DOM API. The default value is false. + + + + + This event is raised when the notification is closed by the web code, such as through notification.close(). + + + You don't need to call since this is coming from the web code. + + + + + The host may run this to report the notification has been displayed and it will cause the [show](https://developer.mozilla.org/docs/Web/API/Notification/show_event) event to be raised for non-persistent notifications. + + + You must not run this unless you are handling the . API throws COMException with error code of HRESULT_FROM_WIN32(ERROR_INVALID_STATE) if is false when this is called. + + + + + The host may run this to report the notification has been clicked, and it will cause the [click](https://developer.mozilla.org/docs/Web/API/Notification/click_event) event to be raised for non-persistent notifications. + + You must not run this unless you are handling the . API throws COMException with error code of HRESULT_FROM_WIN32(ERROR_INVALID_STATE) if is false or has not been run when this is called. + + + + The host may run this to report the notification was dismissed, and it will cause the [close](https://developer.mozilla.org/docs/Web/API/Notification/close_event) event to be raised for non-persistent notifications. + + + You must not run this unless you are handling the . API throws COMException with error code of HRESULT_FROM_WIN32(ERROR_INVALID_STATE) if is false or has not been run when this is called. + + + + + Multiple profiles can be created under a single user data directory but with separated cookies, user preference settings, and various data storage etc.. If the CoreWebView2 was created with a , the CoreWebView2Profile will match those specified options. Otherwise if this CoreWebView2 was created without a , then this will be the default CoreWebView2Profile for the corresponding CoreWebView2Environment. + + + Multiple profiles can be created under a single user data directory but with separated cookies, user preference settings, and various data storage etc.. If the CoreWebView2 was created with a , the CoreWebView2Profile will match those specified options. Otherwise if this CoreWebView2 was created without a , then this will be the default CoreWebView2Profile for the corresponding CoreWebView2Environment. + + + Multiple profiles can be created under a single user data directory but with separated cookies, user preference settings, and various data storage etc.. If the CoreWebView2 was created with a , the CoreWebView2Profile will match those specified options. Otherwise if this CoreWebView2 was created without a , then this will be the default CoreWebView2Profile for the corresponding CoreWebView2Environment. + + + Multiple profiles can be created under a single user data directory but with separated cookies, user preference settings, and various data storage etc.. If the CoreWebView2 was created with a , the CoreWebView2Profile will match those specified options. Otherwise if this CoreWebView2 was created without a , then this will be the default CoreWebView2Profile for the corresponding CoreWebView2Environment. + + + Multiple profiles can be created under a single user data directory but with separated cookies, user preference settings, and various data storage etc.. If the CoreWebView2 was created with a , the CoreWebView2Profile will match those specified options. Otherwise if this CoreWebView2 was created without a , then this will be the default CoreWebView2Profile for the corresponding CoreWebView2Environment. + + + Multiple profiles can be created under a single user data directory but with separated cookies, user preference settings, and various data storage etc.. If the CoreWebView2 was created with a , the CoreWebView2Profile will match those specified options. Otherwise if this CoreWebView2 was created without a , then this will be the default CoreWebView2Profile for the corresponding CoreWebView2Environment. + + + Multiple profiles can be created under a single user data directory but with separated cookies, user preference settings, and various data storage etc.. If the CoreWebView2 was created with a , the CoreWebView2Profile will match those specified options. Otherwise if this CoreWebView2 was created without a , then this will be the default CoreWebView2Profile for the corresponding CoreWebView2Environment. + + + Multiple profiles can be created under a single user data directory but with separated cookies, user preference settings, and various data storage etc.. If the CoreWebView2 was created with a , the CoreWebView2Profile will match those specified options. Otherwise if this CoreWebView2 was created without a , then this will be the default CoreWebView2Profile for the corresponding CoreWebView2Environment. + + + + + Clear the browsing data for the specified dataKinds between the + startTime and endTime. Overload the ClearBrowsingDataAsync method to + allow for additional time parameters. + + + + + Clear the entirety of the browsing data associated with the profile + it is called on. It clears the data regardless of timestamp. + + + + + The name of the profile. + + + + + InPrivate mode is enabled or not. + + + + + Full path of the profile directory. + + + + + The default download folder path. + + + The default value is the system default download folder path for the user. The default download folder path is persisted in the user data folder across sessions. The value should be an absolute path to a folder that the user and application can write to. Throws an exception if the value is invalid, and the default download path is not changed. Otherwise the path is changed immediately. If the directory does not yet exist, it is created at the time of the next download. If the host application does not have permission to create the directory, then the user is prompted to provide a new path through the Save As dialog. The user can override the default download folder path for a given download by choosing a different path in the Save As dialog. + + + + + The PreferredColorScheme property sets the overall color scheme of the WebView2s associated with this profile. + + + This sets the color scheme for WebView2 UI like dialogs, prompts, and menus by setting the media feature prefers-color-scheme. + The default value for this is , which will follow whatever color scheme the OS is currently set to. + + + + + Clear the browsing data of the associated profile. + + + Clears browsing data on the profile the method is called on. Additional optional parameters include the start time and end time to clear the browsing data between as well as the data specific data kinds to clear on the profile. The method may be overloaded to take: + + + No parameters - in which the entirety of the data on the profile will be cleared. + + + The data kind(s) - in which the data kind(s) will be cleared for their entirety. + + + The data kind(s), start time, and end time - in which the data kind(s) will be cleared between the start and end time. The start time will be offset by -1.0 and the end time will be offset by +1.0 to include the last fractional second on each respective end. The start time is inclusive in the time period while the end time is exclusive. + + + + The exposed methods are as follows: + + ClearBrowsingDataAsync(CoreWebView2BrowsingDataKinds dataKinds); + ClearBrowsingDataAsync(CoreWebView2BrowsingDataKinds dataKinds, DateTime startTime, DateTime endTime); + ClearBrowsingDataAsync(); + + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="ClearBrowsingData"::: + + + + + The PreferredTrackingPreventionLevel property allows you to control levels of tracking prevention for WebView2 which are associated with a profile. This level would apply to the context of the profile. That is, all WebView2s sharing the same profile will be affected and also the value is persisted in the user data folder. + + + See for descriptions of levels. + + If tracking prevention feature is enabled when creating the WebView2 environment, you can also disable tracking prevention later using this property and value but that doesn't improves runtime performance. + + There is property to enable/disable tracking prevention feature for all the WebView2's created in the same environment. If enabled, PreferredTrackingPreventionLevel is set to by default for all the WebView2's and profiles created in the same environment or is set to the level whatever value was last changed/persisted to the profile. If disabled PreferredTrackingPreventionLevel is not respected by WebView2. If PreferredTrackingPreventionLevel is set when the feature is disabled, the property value get changed and persisted but it will takes effect only if is true. + + See for more details. + + + + + Sets permission state for the given permission kind and origin asynchronously. + + + The state change persists across sessions until it is changed by another call to SetPermissionState, or by setting the State property in PermissionRequestedEventArgs. Setting the state to will erase any state saved in the profile and restore the default behavior. The origin should have a valid scheme and host (e.g. "https://www.example.com"), otherwise the method fails. Additional URI parts like path and fragment are ignored. For example, "https://wwww.example.com/app1/index.html/" is treated the same as "https://wwww.example.com". See the [MDN origin definition](https://developer.mozilla.org/docs/Glossary/Origin) for more details. + + + + + Invokes the handler with a collection of all nondefault permission settings. + + + Use this method to get the permission state set in the current and previous sessions. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="GetNonDefaultPermissionSettings"::: + + + + + Get the which Creates, adds or updates, gets, or or view the cookies for the current profile. + + + All CoreWebView2s associated with this profile share the same cookie values. Changes to cookies in this cookie manager apply to all CoreWebView2s associated with this profile. + + + + + + Determines whether password information will be autosaved. + + + When disabled, no new password data is saved and no Save/Update Password prompts are displayed. However, if there was password data already saved before disabling this setting, then that password information is auto-populated, suggestions are shown and clicking on one will populate the fields. + When enabled, password information is auto-populated, suggestions are shown and clicking on one will populate the fields, new data is saved, and a Save/Update Password prompt is displayed. The default value is false. It will apply immediately after setting. + This property has the same value as , and changing one will change the other. All WebView2s with the same will share the same value for this property, so for the WebView2s with the same profile, their and will always have the same value. + + + + + Determines whether general form information will be saved and autofilled. + + + General autofill information includes information like names, street and email addresses, phone numbers, and arbitrary input. This excludes password information. When disabled, no suggestions appear, and no new information is saved. + When enabled, information is saved, suggestions appear, and clicking on one will populate the form fields. The default value is true. It will apply immediately after setting. + This property has the same value as , and changing one will change the other. All WebView2s with the same will share the same value for this property, so for the WebView2s with the same profile, their and will always have the same value. + + + + + Add a browser extension to the current user profile from extensionFolderPath. + + The manifest.json folder path. + + See for descriptions of browser extensions. + + Adds the [browser extension](https://developer.mozilla.org/docs/Mozilla/Add-ons/WebExtensions) using the extension path for unpacked extensions from the local device. Extension is running right after installation. + The extension folder path is the topmost folder of an unpacked browser extension and contains the browser extension manifest file. + If the extensionFolderPath is an invalid path or doesn't contain the extension manifest.json file, this function will return ERROR_FILE_NOT_FOUND to callers. + Installed extension will default to true. When is false, AddBrowserExtension will fail and return HRESULT ERROR_NOT_SUPPORTED. + During installation, the content of the extension is not copied to the user data folder. Once the extension is installed, changing the content of the extension will cause the extension to be removed from the installed profile. + When an extension is added the extension is persisted in the corresponding profile. The extension will still be installed the next time you use this profile. + When an extension is installed from a folder path, adding the same extension from the same folder path means reinstalleing this extension. When two extensions with the same Id are installed, only the later installed extension will be kept. + The following summarizes the possible error values that can be returned from AddBrowserExtension and a description of why these errors occur. + + + + Error value + Description + + + HRESULT_FROM_WIN32(ERROR_NOT_SUPPORTED) + Extensions are disabled. + + + HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND) + Cannot find manifest.json file or it is not a valid extension manifest. + + + E_ACCESSDENIED + Cannot load extension with file or directory name starting with _, reserved for use by the system. + + + E_FAIL + Extension failed to install with other unknown reasons. + + + + + + + + Gets a snapshot of the set of extensions on current user profile. + + + See for descriptions of browser extensions. + + Gets a snapshot of the set of extensions installed at the time GetBrowserExtensions is called. If an extension is installed or uninstalled after GetBrowserExtensions completes, the list returned by GetBrowserExtensions remains the same. When AreBrowserExtensionsEnabled is false, GetBrowserExtensions won't return any extensions on current user profile. + + + + + Raised when profile is marked for deletion. + + + When this event is raised, the CoreWebView2Profile and its corresponding CoreWebView2s have been closed, and cannot be used anymore. + + + + + Delete this profile and close the corresponding s. + + + After the API is called, the profile will be marked for deletion. The local profile's directory will be deleted at browser process exit. If it fails to delete, because something else is holding the files open, WebView2 will try to delete the profile at all future browser process starts until successful. The corresponding CoreWebView2s will be closed and the event will be raised. See for more information. If you try to create a new profile with the same name as an existing profile that has been marked as deleted but hasn't yet been deleted, profile creation will fail with HRESULT_FROM_WIN32(ERROR_DELETE_PENDING). + + + + + Event args for the event. + + + Event args for the event. + + + + + Gets the URI of the document that sent this web message. + + + + + Gets the message posted from the WebView content to the host converted to a JSON string. + + + Run this operation to communicate using JavaScript objects. + + + For example, the following postMessage runs result in the following WebMessageAsJson values: + + + postMessage({'a': 'b'}) "{\"a\": \"b\"}" + postMessage(1.2) "1.2" + postMessage('example') "\"example\"" + + + + + + Gets the message posted from the WebView content to the host as a string. + + The message posted from the WebView content to the host. + The message posted is some other kind of JavaScript type. + + Run this operation to communicate using simple strings. + + + For example the following postMessage runs result in the following values returned by TryWebMessageAsString: + + + postMessage({'a': 'b'}) ArgumentException + postMessage(1.2) ArgumentException + postMessage('example') "example" + + + + + + Additional received WebMessage objects. + + + To pass AdditionalObjects via WebMessage to the app, use the chrome.webview.postMessageWithAdditionalObjects content API. Any DOM object type that can be natively representable that has been passed in to additionalObjects parameter will be accessible here. Currently a WebMessage object can be the type. + Entries in the collection can be nullptr if null or undefined was passed. Cast the object to the native type to access its specific properties. + + object additionalObject = eventArgs.AdditionalObjects[0]; + if (additionalObject is CoreWebView2File) + { + CoreWebView2File file = additionalObject as CoreWebView2File; + } else if ... + + + + + + This is used to complete deferrals on event args that support getting deferrals using the GetDeferral method. This class implements . + + + + + + + + + Protected implementation of Dispose pattern. + + + + + Completes the associated deferred event. + + + Complete should only be run once for each deferral taken. + + + + + This class is deprecated; use CoreWebView2PrivateHostObjectHelper instead. + + + + + A shared memory based buffer object that is created by . The object is presented to script as ArrayBuffer when posted to script with . + + + + + + + + Protected implementation of Dispose pattern. + + + + + The file mapping handle of the shared memory of the buffer. + + + Normal app should use to + get a stream object to access the buffer. + For advanced scenarios, you could use native file mapping APIs to obtain + other views or duplicate this handle to another application process and + create a view from the duplicated handle in that process to access the buffer + from that separate process. + + + + + The size of the shared buffer in bytes. + + + + + The raw memory address of the buffer. + + + You can cast it to pointer to real data types like byte* to access the memory from unsafe code region. + Normal app should use to get a stream object to access the buffer. + + + + + Get an stream object that can be used to access the shared buffer. + + + + + Release the backing shared memory. + + + The application should call Close or when no access to the buffer is needed any more, to ensure that the underlying resources are released timely even if the shared buffer object itself is not released due to some leaked reference. + After the shared buffer is closed, the buffer address and file mapping handle previously obtained becomes invalid and cannot be used anymore. + Properties of the object will also be unaccessible. Operations like Read or Write on the stream objects returned from will also fail. + will also fail. The failures will be represented as with error code of RO_E_CLOSED. + + The script code should call chrome.webview.releaseBuffer with the shared buffer as the parameter to release underlying resources as soon as it does not need access the shared buffer any more. + When script tries to access the buffer after calling chrome.webview.releaseBuffer, JavaScript TypeError exception will be raised complaining about accessing a detached ArrayBuffer, the same exception when trying to access a transferred ArrayBuffer. + + Closing the buffer object on native side doesn't impact access from Script and releasing the buffer from script doesn't impact access to the buffer from native side. The underlying shared memory will be released by the OS when both native and script side release the buffer. + + + + + Constructor + + + + + Read at most bufferSize bytes into buffer and return the effective + number of bytes read in bytesReadPtr (unless null). + + + mscorlib disassembly shows the following MarshalAs parameters + void Read([Out, MarshalAs(UnmanagedType.LPArray, SizeParamIndex=1)] byte[] pv, int cb, IntPtr pcbRead); + This means marshaling code will have found the size of the array buffer in the parameter bufferSize. + + + Critical: calls Marshal.WriteInt32 which LinkDemands, takes pointers as input + + + + + Move the stream pointer to the specified position. + + + System.IO.stream supports searching past the end of the stream, like + OLE streams. + newPositionPtr is not an out parameter because the method is required + to accept NULL pointers. + + + Critical: calls Marshal.WriteInt64 which LinkDemands, takes pointers as input + + + + + Sets stream's size. + + + + + Obtain stream stats. + + + STATSG has to be qualified because it is defined both in System.Runtime.InteropServices and + System.Runtime.InteropServices.ComTypes. + The STATSTG structure is shared by streams, storages and byte arrays. Members irrelevant to streams + or not available from System.IO.Stream are not returned, which leaves only cbSize and grfMode as + meaningful and available pieces of information. + grfStatFlag is used to indicate whether the stream name should be returned and is ignored because + this information is unavailable. + + + + + Write at most bufferSize bytes from buffer. + + + Critical: calls Marshal.WriteInt32 which LinkDemands, takes pointers as input + + + + + Create a clone. + + + Not implemented. + + + + + Read at most bufferSize bytes from the receiver and write them to targetStream. + + + Not implemented. + + + + + Commit changes. + + + Only relevant to transacted streams. + + + + + Lock at most byteCount bytes starting at offset. + + + Not supported by System.IO.Stream. + + + + + Undo writes performed since last Commit. + + + Relevant only to transacted streams. + + + + + Unlock the specified region. + + + Not supported by System.IO.Stream. + + + + + The exception that is thrown when an WebView2 Runtime installation is missing. + + + + + Initializes a new instance of the WebView2RuntimeNotFoundException class. + + + + + Initializes a new instance of the WebView2RuntimeNotFoundException class with a specified error message. + + + The error message that explains the reason for the exception. + + + + + Initializes a new instance of the WebView2RuntimeNotFoundException class with a reference to the inner exception that is the cause of this exception. + + + The exception that is the cause of the current exception. + + + + + Initializes a new instance of the WebView2RuntimeNotFoundException class with a specified error message and a reference to the inner exception that is the cause of this exception. + + + The error message that explains the reason for the exception. + + + The exception that is the cause of the current exception. + + + + + + + + + + + + + + + + + Specifies the source of . + + + + + + + + Indicates that web resource is requested from main page including dedicated workers, iframes and main script for shared workers. + + + + + Indicates that web resource is requested from shared worker. + + + + + Indicates that web resource is requested from service worker. + + + + + Indicates that web resource is requested from any supported source. + + + + + Specifies the web resource request contexts. + + + + + Specifies all resources. + + + + + Specifies a document resources. + + + + + Specifies a CSS resources. + + + + + Specifies an image resources. + + + + + Specifies another media resource such as a video. + + + + + Specifies a font resource. + + + + + Specifies a script resource. + + + + + Specifies an XML HTTP request, Fetch and EventSource HTTP communication. + + + + + Specifies a Fetch API communication. + + + Note that this isn't working. Fetch API requests are fired as a part + of COREWEBVIEW2_WEB_RESOURCE_CONTEXT_XML_HTTP_REQUEST. + + + + Specifies a TextTrack resource. + + + + + Specifies an EventSource API communication. + + + Note that this isn't working. EventSource API requests are fired as a part + of COREWEBVIEW2_WEB_RESOURCE_CONTEXT_XML_HTTP_REQUEST. + + + + Specifies a WebSocket API communication. + + + + + Specifies a Web App Manifest. + + + + + Specifies a Signed HTTP Exchange. + + + + + Specifies a Ping request. + + + + + Specifies a CSP Violation Report. + + + + + Specifies an other resource. + + + + + Indicates the error status values for web navigations. + + + + + Indicates that an unknown error occurred. + + + + + Indicates that the SSL certificate common name does not match the web address. + + + + + Indicates that the SSL certificate has expired. + + + + + Indicates that the SSL client certificate contains errors. + + + + + Indicates that the SSL certificate has been revoked. + + + + + Indicates that the SSL certificate is not valid. The certificate may not match the public key pins for the host name, the certificate is signed by an untrusted authority or using a weak sign algorithm, the certificate claimed DNS names violate name constraints, the certificate contains a weak key, the validity period of the certificate is too long, lack of revocation information or revocation mechanism, non-unique host name, lack of certificate transparency information, or the certificate is chained to a [legacy Symantec root](https://security.googleblog.com/2018/03/distrust-of-symantec-pki-immediate.html). + + + + + Indicates that the host is unreachable. + + + + + Indicates that the connection has timed out. + + + + + Indicates that the server returned an invalid or unrecognized response. + + + + + Indicates that the connection was stopped. + + + + + Indicates that the connection was reset. + + + + + Indicates that the Internet connection has been lost. + + + + + Indicates that a connection to the destination was not established. + + + + + Indicates that the provided host name was not able to be resolved. + + + + + Indicates that the operation was canceled. This status code is also used when the app cancels a navigation via event, and for original navigation if the app navigates the WebView2 in a rapid succession away after the load for original navigation commenced, but before it completed. + + + + + Indicates that the request redirect failed. + + + + + An unexpected error occurred. + + + + + Indicates that user is prompted with a login, waiting on user action. Initial navigation to a login site will always return this even if app provides credential using . HTTP response status code in this case is 401. See [status code reference](https://developer.mozilla.org/docs/Web/HTTP/Status). + + + + + Indicates that user lacks proper authentication credentials for a proxy server. HTTP response status code in this case is 407. See [status code reference](https://developer.mozilla.org/docs/Web/HTTP/Status). + + + + + Tracking prevention levels. + + + + + Tracking prevention is turned off. + + + + + The least restrictive level of tracking prevention. Set to this level to protect against malicious trackers but allows most other trackers and personalize content and ads. See [Current tracking prevention behavior](/microsoft-edge/web-platform/tracking-prevention#current-tracking-prevention-behavior) for fine-grained information on what is being blocked with this level and can change with different Edge versions. + + + + + The default level of tracking prevention. Set to this level to protect against social media tracking on top of malicious trackers. Content and ads will likely be less personalized. See [Current tracking prevention behavior](/microsoft-edge/web-platform/tracking-prevention#current-tracking-prevention-behavior) for fine-grained information on what is being blocked with this level and can change with different Edge versions. + + + + + The most restrictive level of tracking prevention. Set to this level to protect against malicious trackers and most trackers across sites. Content and ads will likely have minimal personalization. This level blocks the most trackers but could cause some websites to not behave as expected. See [Current tracking prevention behavior](/microsoft-edge/web-platform/tracking-prevention#current-tracking-prevention-behavior) for fine-grained information on what is being blocked with this level and can change with different Edge versions. + + + + + Indicates the text direction of the notification. + + + + + Indicates that the notification text direction adopts the browser's language setting behavior. + + + + + Indicates that the notification text is left-to-right. + + + + + Indicates that the notification text is right-to-left. + + + + + Specifies the desired access from script to . + + + + + Script from web page only has read access to the shared buffer. + + + + + Script from web page has read and write access to the shared buffer. + + + + + Specifies the action type when server certificate error is detected to be used in the . + + + + + Indicates to ignore the warning and continue the request with the TLS certificate. This decision is cached for the RequestUri's host and the server certificate in the session. + + + + + Indicates to reject the certificate and cancel the request. + + + + + Indicates to display the default TLS interstitial error page to user for page navigations. For others TLS certificate is rejected and the request is cancelled. + + + + + The ScrollBar style being set during environment creation. + + + + + Browser default ScrollBar style + + + + + Window style fluent overlay scroll bar. Please see [Fluent UI](https://developer.microsoft.com/fluentui#/) for more details on fluent UI. + + + + + Specifies the JavaScript dialog kind used in . + + + + + Indicates that the dialog uses window.alert JavaScript function. + + + + + Indicates that the dialog uses window.confirm JavaScript function. + + + + + Indicates that the dialog uses window.prompt JavaScript function. + + + + + Indicates that the dialog uses window.beforeunload JavaScript event. + + + + + + Status of a programmatic Save As call. Indicates the result of the method. + + + + + The `ShowSaveAsUIAsync` method call completed successfully. By default, the system Save As dialog opens. If is set to `TRUE`, the system dialog is skipped and the download is started. + + + + + Could not perform Save As because the destination file path is an invalid path. The path is invalid when it is empty, a relative path, or a directory, or when the parent path does not exist. + + + + + Could not perform Save As because the destination file path already exists and replacing files was not allowed by the property. + + + + + Could not perform Save As because the `Kind` property selection is not supported due to content MIME type or system limits. See for MIME type limits. System limits include when the `HtmlOnly` kind is selected for an error page at child mode, or when the `Complete` kind is selected and the WebView is running in an App Container. + + + + + Did not perform Save As because the end user cancelled or the was set to `TRUE`. + + + + + Specifies selection options. + + + For HTML documents, we support 3 Save As kinds: HtmlOnly, SingleFile and Complete. For non-HTML documents, you must use Default. MIME types of `text/html` and `application/xhtml+xml` are considered HTML documents. + + + + + Default kind to save non-HTML content. If this kind is selected for an HTML page, the behavior is the same as the `HtmlOnly` kind. + + + + + Save the page as HTML. Only the top-level document is saved, excluding subresources. + + + + + Save the page as [MHTML](https://en.wikipedia.org/wiki/MHTML). + + + + + Save the page as HTML and download the page-related source files (for example: CSS, JavaScript, images, etc.) in a directory with the same filename prefix. + + + + + + Specifies the WebView2 release channel. + + + Use ReleaseChannels and ChannelSearchKind on CoreWebView2EnvironmentOptions to control which channel the WebView2 loader searches for. + + + + Channel + Primary purpose + How often updated with new features + + + Stable (WebView2 Runtime) + Broad Deployment + Monthly + + + Beta + Flighting with inner rings, automated testing + Monthly + + + Dev + Automated testing, selfhosting to test new APIs and features + Weekly + + + Canary + Automated testing, selfhosting to test new APIs and features + Daily + + + + + + + No release channel. ReleaseChannels will be ignored if only this value is passed. + + + + + The stable WebView2 Runtime that is released every 4 weeks. + + + + + The Beta release channel that is released every 4 weeks, a week before the stable release. + + + + + The Dev release channel that is released weekly. + + + + + The Canary release channel that is released daily. + + + + + Specifies the process kind used in . + + + The values in this enum make reference to the process kinds in the Chromium architecture. For more information about what these processes are and what they do, see [Browser Architecture - Inside look at modern web browser](https://developers.google.com/web/updates/2018/09/inside-browser-part1). + + + + + Indicates that the process is browser process. + + + + + Indicates that the process is render process. + + + + + Indicates that the process is utility process. + + + + + Indicates that the process is sandbox helper process. + + + + + Indicates that the process is Gpu process. + + + + + Indicates that the process is ppapi plugin process. + + + + + Indicates that the process is ppapi broker process. + + + + + Specifies the process failure reason used in . For process failures where a process has exited, it indicates the type of issue that produced the process exit. + + + + + Indicates that an unexpected process failure occurred. + + + + + Indicates that the process became unresponsive. This only applies to the main frame's render process. + + + + + Indicates that the process was terminated. For example, from Task Manager. + + + + + Indicates that the process crashed. Most crashes will generate dumps in the location indicated by . + + + + + Indicates that the process failed to launch. + + + + + Indicates that the process died due to running out of memory. + + + + + Deprecated. This value is unused. + + + + + Specifies the process failure kind used in . The values in this enum make reference to the process kinds in the Chromium architecture. For more information about what these processes are and what they do, see [Browser Architecture - Inside look at modern web browser](https://developers.google.com/web/updates/2018/09/inside-browser-part1). + + + + + Indicates that the browser process ended unexpectedly. The WebView automatically moves to the Closed state. The app has to recreate a new WebView to recover from this failure. + + + + + Indicates that the main frame's render process ended unexpectedly. Any subframes in the WebView will be gone too. A new render process is created automatically and navigated to an error page. You can use the method to try to recover from this failure. Alternatively, you can use and recreate the WebView. + + + + + Indicates that the main frame's render process is unresponsive. + + Renderer process unresponsiveness can happen for the following reasons: + + + + + There is a long-running script being executed. For example, the web content in your WebView might be performing a synchronous XHR, or have entered an infinite loop. + + + + + The system is busy. + + + + + The ProcessFailed event will continue to be raised every few seconds until the renderer procees has become responsive again. The application can consider taking action if the event keeps being raised. For example, the application might show UI for the user to decide to keep waiting or reload the page, or navigate away. + + + + Indicates that a frame-only render process ended unexpectedly. The process exit does not affect the top-level document, only a subset of the subframes within it. The content in these frames is replaced with an error page in the frame. Your application can communicate with the main frame to recover content in the impacted frames, using to get information about the impacted frames. + + + + + Indicates that a utility process ended unexpectedly. The failed process is recreated automatically. Your application does not need to handle recovery for this event, but can use to collect information about the failure, including ProcessDescription. + + + + + Indicates that a sandbox helper process ended unexpectedly. This failure is not fatal. Your application does not need to handle recovery for this event, but can use to collect information about the failure. + + + + + Indicates that the GPU process ended unexpectedly. The failed process is recreated automatically. This failure is not fatal. Your application does not need to handle recovery for this event, but can use to collect information about the failure. + + + + + Indicates that a PPAPI plugin process ended unexpectedly. This failure is not fatal. Your application does not need to handle recovery for this event, but can use to collect information about the failure, including ProcessDescription. + + + + + Indicates that a PPAPI plugin broker process ended unexpectedly. This failure is not fatal. Your application does not need to handle recovery for this event, but can use to collect information about the failure. + + + + + Indicates that a process of unspecified kind ended unexpectedly. Your application can use to collect information about the failure. + + + + + Indicates the status for printing. + + + + + Indicates that the print operation is succeeded. + + + + + Indicates that the printer is not available. + + + + + Indicates that the print operation is failed. + + + + + The orientation for printing, used by the property. + + + + + Print the page(s) in portrait orientation. + + + + + Print the page(s) in landscape orientation. + + + + + Specifies the media size for a print. + + + + + The default media size for a printer. + + + + + Indicate custom media size that is specific to the printer. + + + + + Specifies the duplex option for a print. + + + + + The default duplex for a printer. + + + + + Print on only one side of the sheet. + + + + + Print on both sides of the sheet, flipped along the long edge. + + + + + Print on both sides of the sheet, flipped along the short edge. + + + + + Specifies the print dialog kind. + + + + + Opens the browser print preview dialog. + + + + + Opens the system print dialog. + + + + + Specifies the color mode for a print. + + + + + The default color mode for a printer. + + + + + Indicate that the printed output will be in color. + + + + + Indicate that the printed output will be in shades of gray. + + + + + Specifies the collation for a print. + + + + + The default collation for a printer. + + + + + Indicate that the collation has been selected for the printed output. + + + + + Indicate that the collation has not been selected for the printed output. + + + + + Preferred color scheme for WebView2's associated with a profile. + + + + + Auto color scheme. + + + + + Light color scheme. + + + + + Dark color scheme. + + + + + Pointer event kind used by to convey the kind of pointer event being sent to WebView. + + + + + Corresponds to WM_POINTERACTIVATE. + + + + + Corresponds to WM_POINTERDOWN. + + + + + Corresponds to WM_POINTERENTER. + + + + + Corresponds to WM_POINTERLEAVE. + + + + + Corresponds to WM_POINTERUP. + + + + + Corresponds to WM_POINTERUPDATE. + + + + + Specifies the response to a permission request. + + + + + Specifies that the default browser behavior is used, which normally prompts users for decision. + + + + + Specifies that the permission request is granted. + + + + + Specifies that the permission request is denied. + + + + + Indicates the kind of a permission request. + + + + + Indicates an unknown permission. + + + + + Indicates permission to capture audio. + + + + + Indicates permission to capture video. + + + + + Indicates permission to access geolocation. + + + + + Indicates permission to send web notifications. Apps that would like to show notifications should handle and/or events and no browser permission prompt will be shown for notification requests. Note that push notifications are currently unavailable in WebView2. + + + + + Indicates permission to access generic sensor. Generic Sensor covers ambient-light-sensor, accelerometer, gyroscope, and magnetometer. + + + + + Indicates permission to read the system clipboard without a user gesture. + + + + + Indicates permission to automatically download multiple files. Permission is requested when multiple downloads are triggered in quick succession. + + + + + Indicates permission to read and write to files or folders on the device. Permission is requested when developers use the [File System Access API](https://developer.mozilla.org/docs/Web/API/File_System_Access_API) to show the file or folder picker to the end user, and then request "readwrite" permission for the user's selection. + + + + + Indicates permission to play audio and video automatically on sites. This permission affects the autoplay attribute and play method of the audio and video HTML elements, and the start method of the Web Audio API. See the [Autoplay guide for media and Web Audio APIs](https://developer.mozilla.org/docs/Web/Media/Autoplay_guide) for details. + + + + + Indicates permission to use fonts on the device. Permission is requested when developers use the [Local Font Access API](https://wicg.github.io/local-font-access/) to query the system fonts available for styling web content. + + + + + Indicates permission to send and receive system exclusive messages to/from MIDI (Musical Instrument Digital Interface) devices. Permission is requested when developers use the [Web MIDI API](https://developer.mozilla.org/docs/Web/API/Web_MIDI_API) to request access to system exclusive MIDI messages. + + + + + Indicates permission to open and place windows on the screen. Permission is requested when developers use the [Multi-Screen Window Placement API](https://www.w3.org/TR/window-placement/) to get screen details. + + + + + Specifies the PDF toolbar item types used for the . + + + + + No item. By default the equal to this value. + + + + + The save button on PDF toolbar. + + + + + The print button on PDF toolbar. + + + + + The save as button on PDF toolbar. + + + + + The zoom in button on PDF toolbar. + + + + + The zoom out button on PDF toolbar. + + + + + The rotate button on PDF toolbar. + + + + + The fit to width button on PDF toolbar. + + + + + The page view button on PDF toolbar. + + + + + The contents button on PDF toolbar. + + + + + The page number button on PDF toolbar. + + + + + The search button on PDF toolbar. + + + + + The full screen button on PDF toolbar. + + + + + The setting and more button on PDF toolbar. + + + + + Enum which represents the kind of non-client regions. + + + + + Enum value which represents a region entirely outside the WebView2 window. + + + + + Enum value which represents the client area. + + + + + Enum value which represents the caption area. + + + + + Enum value which represents the minimize window control button. + + + + + Enum value which represents the maximize window control button. + + + + + Enum value which represents the close window control button. + + + + + Specifies the navigation kind of each navigation. + + + + + A navigation caused by CoreWebView2.Reload(), location.reload(), the end user using F5 or other UX, or other reload mechanisms to reload the current document without modifying the navigation history. + + + + + A navigation back or forward to a different entry in the session navigation history, like via CoreWebView2.Back(), location.back(), the end user pressing Alt+Left or other UX, or other mechanisms to navigate back or forward in the current session navigation history. + + + + + A navigation to another document, which can be caused by CoreWebView2.Navigate(),window.location.href = ..., or other WebView2 or DOM APIs that navigate to a new URI. + + + + + Specifies the reason for moving focus. + + + + + Specifies that the code is setting focus into WebView. + + + + + Specifies that the focus is moved due to Tab traversal forward. + + + + + Specifies that the focus is moved due to Tab traversal backward. + + + + + Mouse event virtual keys associated with a for . + + + + + No additional keys pressed. + + + + + Left mouse button is down, MK_LBUTTON. + + + + + Right mouse button is down, MK_RBUTTON. + + + + + Shift key is down, MK_SHIFT. + + + + + Ctrl key is down, MK_CONTROL. + + + + + Middle mouse button is down, MK_MBUTTON. + + + + + First X button is down, MK_XBUTTON1. + + + + + Second X button is down, MK_XBUTTON2. + + + + + Mouse event kind used by to convey the kind of mouse event being sent to WebView. + + + + + Mouse horizontal wheel scroll event, WM_MOUSEHWHEEL. + + + + + Left button double click mouse event, WM_LBUTTONDBLCLK. + + + + + Left button down mouse event, WM_LBUTTONDOWN. + + + + + Left button up mouse event, WM_LBUTTONUP. + + + + + Mouse leave event, WM_MOUSELEAVE. + + + + + Middle button double click mouse event, WM_MBUTTONDBLCLK. + + + + + Middle button down mouse event, WM_MBUTTONDOWN. + + + + + Middle button up mouse event, WM_MBUTTONUP. + + + + + Mouse move event, WM_MOUSEMOVE. + + + + + Right button double click mouse event, WM_RBUTTONDBLCLK. + + + + + Right button down mouse event, WM_RBUTTONDOWN. + + + + + Right button up mouse event, WM_RBUTTONUP. + + + + + Mouse wheel scroll event, WM_MOUSEWHEEL. + + + + + First or second X button double click mouse event, WM_XBUTTONDBLCLK. + + + + + First or second X button down mouse event, WM_XBUTTONDOWN. + + + + + First or second X button up mouse event, WM_XBUTTONUP. + + + + + R button down over non client area, WM_NCRBUTTONDOWN. + + + + + R button up over non client area, WM_NCRBUTTONUP. + + + + + Desired memory consumption level of a WebView. + + + + + Normal memory usage target level. + + + + + Low memory usage target level. Used for inactivate WebView for reduced memory consumption. + + + + + Specifies the key event kind that raises an event. + + + + + Specifies that the key event kind corresponds to window message WM_KEYDOWN. + + + + + Specifies that the key event kind corresponds to window message WM_KEYUP. + + + + + Specifies that the key event kind corresponds to window message WM_SYSKEYDOWN. + + + + + Specifies that the key event kind corresponds to window message WM_SYSKEYUP. + + + + + Kind of cross origin resource access allowed for host resources during download. + + + Note that other normal access checks like same origin DOM access check and [Content Security Policy](https://developer.mozilla.org/docs/Web/HTTP/CSP) still apply. + The following table illustrates the host resource cross origin access according to access context and CoreWebView2HostResourceAccessKind. + + + + Cross Origin Access Context + Deny + Allow + DenyCors + + + From DOM like src of img, script or iframe element + Deny + Allow + Allow + + + From Script like Fetch or XMLHttpRequest + Deny + Allow + Deny + + + + + + + All cross origin resource access is denied, including normal sub resource access as src of a script or image element. + + + + + All cross origin resource access is allowed, including accesses that are subject to Cross-Origin Resource Sharing(CORS) check. The behavior is similar to a web site sends back http header Access-Control-Allow-Origin: *. + + + + + Cross origin resource access is allowed for normal sub resource access like as src of a script or image element, while any access that subjects to CORS check will be denied. See [Cross-Origin Resource Sharing](https://developer.mozilla.org/docs/Web/HTTP/CORS) for more information. + + + + + Specifies the frame kind used in . + + + + + Indicates that the frame is an unknown type frame. We may extend this enum type to identify more frame kinds in the future. For example, if portal frame which current in experimental phase gets finalized, we may extend this to include a new frame kind `COREWEBVIEW2_FRAME_KIND_PORTAL`. + + + + + Indicates that the frame is a primary main frame(). + + + + + Indicates that the frame is an iframe. + + + + + Indicates that the frame is an [embed](https://developer.mozilla.org/docs/Web/HTML/Element/embed) element. + + + + + Indicates that the frame is an [object](https://developer.mozilla.org/docs/Web/HTML/Element/object) element. + + + + + Allowed permissions of as described in [FileSystemHandle.requestPermission()](https://developer.mozilla.org/docs/Web/API/FileSystemHandle/requestPermission) + + + + + Read-only permission for FileSystemHandle + + + + + Read and write permissions for FileSystemHandle + + + + + Kind of CoreWebView2FileSystemHandle as described in [FileSystemHandle.kind](https://developer.mozilla.org/docs/Web/API/FileSystemHandle/kind) + + + + + FileSystemHandle is for a file (i.e. [FileSystemFileHandle](https://developer.mozilla.org/docs/Web/API/FileSystemFileHandle)) + + + + + FileSystemHandle is for a directory (i.e. [FileSystemDirectoryHandle](https://developer.mozilla.org/docs/Web/API/FileSystemDirectoryHandle)) + + + + + The requested format to get the Favicon from . + + + + + Request the Favicon to be retrieved a Png Format. + + + + + Request the Favicon to be retrieved a Jpeg Format. + + + + + The state of the . + + + + + The download is in progress. + + + + + The connection with the file host was broken. The reason why a download was interrupted can accessed from . See for descriptions of the different kinds of interrupt reasons. Host can check whether an interrupted download can be resumed with . Once resumed, the download state is in progress. + + + + + The download completed successfully. + + + + + The reason why the was interrupted. + + + + + No interrupt reason. + + + + + Generic file error. + + + + + Access denied due to security restrictions. + + + + + Disk full. User should free some space or choose a different location to store the file. + + + + + Result file path with file name is too long. + + + + + File is too large for file system. + + + + + Microsoft Defender Smartscreen detected a virus in the file. + + + + + File was in use, too many files opened, or out of memory. + + + + + File blocked by local policy. + + + + + Security check failed unexpectedly. Microsoft Defender SmartScreen could not scan this file. + + + + + Seeking past the end of a file in opening a file, as part of resuming an interrupted download. The file did not exist or was not as large as expected. Partially downloaded file was truncated or deleted, and download will be restarted automatically. + + + + + Partial file did not match the expected hash and was deleted. Download will be restarted automatically. + + + + + Generic network error. User can retry the download manually. + + + + + Network operation timed out. + + + + + Network connection lost. User can retry the download manually. + + + + + Server has gone down. User can retry the download manually. + + + + + Network request invalid because original or redirected URI is invalid, has an unsupported scheme, or is disallowed by network policy. + + + + + Generic server error. User can retry the download manually. + + + + + Server does not support range requests. + + + + + Server does not have the requested data. + + + + + Server did not authorize access to resource. + + + + + Server certificate problem. + + + + + Server access forbidden. + + + + + Unexpected server response. Responding server may not be intended server. User can retry the download manually. + + + + + Server sent fewer bytes than the Content-Length header. Content-Length header may be invalid or connection may have closed. Download is treated as complete unless there are [strong validators](https://tools.ietf.org/html/rfc7232#section-2) present to interrupt the download. + + + + + Unexpected cross-origin redirect. + + + + + User canceled the download. + + + + + User shut down the WebView. Resuming downloads that were interrupted during shutdown is not yet supported. + + + + + User paused the download. + + + + + WebView crashed. + + + + + The default download dialog can be aligned to any of the WebView corners by setting the property. The default position is top-right corner. + + + + + The top-left corner of the WebView. + + + + + The top-right corner of the WebView. + + + + + The bottom-left corner of the WebView. + + + + + The bottom-right corner of the WebView. + + + + + Kind of cookie SameSite status used in the class. + + + These fields match those as specified in https://developer.mozilla.org/docs/Web/HTTP/Cookies#. + Learn more about SameSite cookies here: https://tools.ietf.org/html/draft-west-first-party-cookies-07 + + + + + None SameSite type. No restrictions on cross-site requests. + + + + + Lax SameSite type. The cookie will be sent with "same-site" requests, and with "cross-site" top level navigation. + + + + + Strict SameSite type. The cookie will only be sent along with "same-site" requests. + + + + + Indicates the kind of context for which the context menu was created for the property. This enum will always represent the active element that caused the context menu request. If there is a selection with multiple images, audio and text, for example, the element that the end user right clicks on within this selection will be the option represented by this enum. + + + + + Indicates that the context menu was created for the page without any additional content. + + + + + Indicates that the context menu was created for an image element. + + + + + Indicates that the context menu was created for selected text. + + + + + Indicates that the context menu was created for an audio element. + + + + + Indicates that the context menu was created for a video element. + + + + + Specifies the menu item kind for the property. + + + + + Specifies a command menu item kind. + + + + + Specifies a check box menu item kind. objects of this kind will need the property to determine current state of the check box. + + + + + Specifies a radio button menu item kind. objects of this kind will need the property to determine current state of the radio button. + + + + + Specifies a separator menu item kind. objects of this kind are used to signal a visual separator with no functionality. + + + + + Specifies a submenu menu item kind. objects of this kind will contain a collection of its children objects. + + + + + The kind of the . + + + + + Specifies smart card certificate. + + + + + Specifies PIN certificate. + + + + + Specifies other certificate. + + + + + The order that release channels are searched for during environment creation. + + + The default behavior is to search for and use the most stable channel found on the device. The order from most to least stable is: WebView2 Runtime -> Beta -> Dev -> Canary. Switch the order to prefer the least stable channel in order to perform pre-release testing. See for descriptions of channels. + + + + + Search for a release channel from most to least stable: WebView2 Runtime -> Beta -> Dev -> Canary. This is the default behavior. + + + + + Search for a release channel from least to most stable: Canary -> Dev -> Beta -> WebView2 Runtime. + + + + + Specifies the image format for the method. + + + + + Indicates that the PNG image format is used. + + + + + Indicates that the JPEG image format is used. + + + + + Indicates the kind of browsing data to clear. Or operations can be applied to create a mask representing multiple CoreWebView2BrowsingDataKinds. The resulting mask may be passed to or to clear the corresponding data. + + + + + Specifies file systems data. + + + + + Specifies data stored by the IndexedDB DOM feature. + + + + + Specifies data stored by the localStorage DOM API. + + + + + Specifies data stored by the Web SQL database DOM API. + + + + + Specifies data stored by the CacheStorage DOM API. + + + + + Specifies DOM storage data, now and future. This browsing data kind is inclusive of CoreWebView2BrowsingDataKinds.FileSystems, CoreWebView2BrowsingDataKinds.IndexedDb, CoreWebView2BrowsingDataKinds.WebSql, CoreWebView2BrowsingDataKinds.ServiceWorkers, CoreWebView2BrowsingDataKinds.CacheStorage, and some other data kinds not listed yet to keep consistent with [DOM-accessible storage](https://www.w3.org/TR/clear-site-data/#storage). + + + + + Specifies HTTP cookies data. + + + + + Specifies all site data, now and future. This browsing data kind is inclusive of CoreWebView2BrowsingDataKinds.AllDomStorage and CoreWebView2BrowsingDataKinds.Cookies. New site data types may be added to this data kind in the future. + + + + + Specifies disk cache. + + + + + Specifies download history data. + + + + + Specifies general autofill form data. This excludes password information and includes information like: names, street and email addresses, phone numbers, and arbitrary input. This also includes payment data. + + + + + Specifies password autosave data. + + + + + Specifies browsing history data. + + + + + Specifies settings data. + + + + + Specifies profile data that should be wiped to make it look like a new profile. This does not delete account-scoped data like passwords but will remove access to account-scoped data by signing the user out. Specifies all profile data, now and future. New profile data types may be added to this data kind in the future. This browsing data kind is inclusive of , , , , , , . + + + + + Specifies service workers registered for an origin, and clear will result in termination and deregistration of them. + + + + + Specifies the browser process exit kind used in . + + + + + Indicates that the browser process ended normally. + + + + + Indicates that the browser process ended unexpectedly. A event will also be raised to listening WebViews from the associated to the failed process. + + + + + Mode for how the property is interpreted in relation to the property. + + + + + property represents raw pixels. Physical size of WebView is not impacted by . + + + + + property represents logical pixels and the property is used to get the physical size of the WebView. + + + + + Contains the information packed into the LPARAM sent to a Win32 key event. + + + For more information about WM_KEYDOWN, navigate to [WM_KEYDOWN message](/windows/win32/inputdev/wm-keydown). + + + + + Specifies the repeat count for the current message. + + + + + Specifies the scan code. + + + + + Indicates that the key is an extended key. + + + + + Indicates that a menu key is held down (context code). + + + + + Indicates that the key was held down. + + + + + Indicates that the key was released. + + + + + A value representing RGBA color (Red, Green, Blue, Alpha) for WebView2. + + + Each component takes a value from 0 to 255, with 0 being no intensity and 255 being the highest intensity. + + + + + Specifies the intensity of the Alpha ie. opacity value. 0 is transparent, 255 is opaque. + + + + + Specifies the intensity of the Red color. + + + + + Specifies the intensity of the Green color. + + + + + Specifies the intensity of the Blue color. + + + + + The window features for a WebView popup window. + + + The fields match the windowFeatures passed to window.open() as specified in [Window features](https://developer.mozilla.org/docs/Web/API/Window/open#Window_features) on MDN. There is no requirement for you to respect the values. If your app does not have corresponding UI features (for example, no toolbar) or if all instance of WebView are opened in tabs and do not have distinct size or positions, then your app does not respect the values. You may want to respect values, but perhaps only some apply to the UI of you app. Accordingly, you may respect all, some, or none of the properties as appropriate for your app. For all numeric properties, if the value that is passed to window.open() is outside the range of an uint, the resulting value is uint.MaxValue. If you are not able to parse the value an integer, it is considered 0. If the value is a floating point value, it is rounded down to an integer. + + + + + Indicates whether the left and top values are specified. + + + + + Indicates whether the height and width values are specified. + + + + + Gets the left position of the window. Ignored if is false. + + + + + Gets the top position of the window. Ignored if is false. + + + + + Gets the height of the window. Ignored if is false. + + + + + Gets the width of the window. Ignored if is false. + + + + + Indicates that the menu bar is displayed. + + + + + Indicates that the status bar is displayed. + + + + + Indicates that the browser toolbar is displayed. + + + + + Indicates that the scroll bars are displayed. + + + + + View of the HTTP representation for a web resource response. + + + The properties of this object are not mutable. This response view is used with the event. + + + + + Gets the HTTP response headers as received. + + + + + Gets the HTTP response status code. + + + + + Gets the HTTP response reason phrase. + + + + + Gets the response content stream asynchronously. + + The content failed to load. + + A null stream means no content was found. Note content (if any) for redirect responses is ignored. + This method returns null if content size is more than 123MB. If msWebView2EnableDownloadContentInWebResourceResponseReceived feature flag is disabled, for navigations that become downloads or if response is downloadable content type (e.g., application/octet-stream), this method also returns null. See event to handle the response or enable the feature flag. The Stream object that is returned will be thread-safe and as reads will be blocking while waiting for data to be available, it is recommended to read from a background thread. + If this method is being called again before a first call has completed, it will complete at the same time all prior calls do. + If this method is being called after a first call has completed, it will return immediately (asynchronously). + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="WebResourceResponseReceived"::: + + + + + Event args for the event. + + + + + Gets the request object for the web resource, as committed. + + + This includes headers added by the network stack that were not be included during the associated event, such as Authentication headers. Modifications to this object have no effect on how the request is processed as it has already been sent. + + + + + Gets view of the response object received for the web resource. + + + + + An HTTP response used with the event. + + + + + Gets HTTP response content as stream. + + + Stream must have all the content data available by the time the event deferral of this response is completed. Stream should be agile or be created from a background thread to prevent performance impact to the UI thread. null means no content data. + When providing the response data, you should consider relevant HTTP request headers just like an HTTP server would do. For example, if the request was for a video resource in a HTML video element, the request may contain the [Range](https://developer.mozilla.org/docs/Web/HTTP/Headers/Range) header to request only a part of the video that is streaming. In this case, your response stream should be only the portion of the video specified by the range HTTP request headers and you should set the appropriate [Content-Range](https://developer.mozilla.org/docs/Web/HTTP/Headers/Content-Range) header in the response. + + + + + + Gets the overridden HTTP response headers. + + + + + Gets or sets the HTTP response status code. + + + + + Gets or sets the HTTP response reason phrase. + + + + + Event args for the event. + + + Event args for the event. + + + + + Gets the web resource request. + + + The request object may be missing some headers that are added by network stack at a later time. + + + + + Gets or sets the object. + + + If this object is set, the event will be completed with this Response. + An empty object can be created with and then modified to construct the Response. + + + + + Gets the web resource request context. + + + + + Gets a object and put the event into a deferred state. + + + Use this to the event at a later time. + + + + + Gets the source of web resource request. + + + + + An HTTP request used with the event. + + + + + Gets or sets the request URI. + + + + + Gets or sets the HTTP request method. + + + + + Gets or sets the HTTP request message body as stream. + + + POST data should be here. If a stream is set, which overrides the message body, the stream must have all the content data available by the time the event deferral of this request is completed. Stream should be agile or be created from a background STA to prevent performance impact to the UI thread. null means no content data. + + + + + + Gets the mutable HTTP request headers. + + + + + Event args for the event. + + + + + true if the page being navigated to is a new document. + + + + + Defines properties that enable, disable, or modify WebView features. + + + Changes to and will take effect immediately, while other setting changes made after event do not apply until the next top-level navigation. + + + Defines properties that enable, disable, or modify WebView features. + + + Changes to and will take effect immediately, while other setting changes made after event do not apply until the next top-level navigation. + + + Defines properties that enable, disable, or modify WebView features. + + + Changes to and will take effect immediately, while other setting changes made after event do not apply until the next top-level navigation. + + + Defines properties that enable, disable, or modify WebView features. + + + Changes to and will take effect immediately, while other setting changes made after event do not apply until the next top-level navigation. + + + Defines properties that enable, disable, or modify WebView features. + + + Changes to and will take effect immediately, while other setting changes made after event do not apply until the next top-level navigation. + + + Defines properties that enable, disable, or modify WebView features. + + + Changes to and will take effect immediately, while other setting changes made after event do not apply until the next top-level navigation. + + + Defines properties that enable, disable, or modify WebView features. + + + Changes to and will take effect immediately, while other setting changes made after event do not apply until the next top-level navigation. + + + Defines properties that enable, disable, or modify WebView features. + + + Changes to and will take effect immediately, while other setting changes made after event do not apply until the next top-level navigation. + + + Defines properties that enable, disable, or modify WebView features. + + + Changes to and will take effect immediately, while other setting changes made after event do not apply until the next top-level navigation. + + + + + Determines whether running JavaScript is enabled in all future navigations in the WebView. + + + This only affects scripts in the document. Scripts injected with runs even if script is disabled. The default value is true. + + + + + Determines whether communication from the host to the top-level HTML document of the WebView is allowed. + + + This is used when loading a new HTML document. If set to true, communication from the host to the top-level HTML document of the WebView is allowed using , , and message event of window.chrome.webview. Communication from the top-level HTML document of the WebView to the host is allowed using window.chrome.webview.postMessage function and the event. If set to false, then communication is disallowed. and fail and window.chrome.webview.postMessage fails by throwing an instance of an Error object. The default value is true. + + + + + + + + Determines whether WebView renders the default JavaScript dialog box. + + + This is used when loading a new HTML document. If set to false, WebView does not render the default JavaScript dialog box (specifically those displayed by the JavaScript alert, confirm, prompt functions and beforeunload event). Instead, WebView raises event that contains all of the information for the dialog and allow the host app to show a custom UI. The default value is true. + + + + + + Determines whether the status bar is displayed. + + + The status bar is usually displayed in the lower left of the WebView and shows things such as the URI of a link when the user hovers over it and other information. The default value is true. The status bar UI can be altered by web content and should not be considered secure. + + + + + Determines whether the user is able to use the context menu or keyboard shortcuts to open the DevTools window. + + + The default value is true. + + + + + Determines whether the default context menus are shown to the user in WebView. + + + The default value is true. + + + + + Determines whether host objects are accessible from the page in WebView. + + + The default value is true. + + + + + Determines whether the user is able to impact the zoom of the WebView. + + + When disabled, the user is not able to zoom using Ctrl++, Ctr+-, or Ctrl+mouse wheel, but the zoom is set using property. The default value is true. + + + + + Determines whether to disable built in error page for navigation failure and render process failure. + + + When disabled, blank page is displayed when related error happens. The default value is true. + + + + + Determines WebView2's User Agent. + + + The default value is the default User Agent of the Edge browser. This property may be overridden if the User-Agent header is set in a request. If the parameter is empty the User Agent will not be updated and the current User Agent will remain. Setting this property may clear User Agent Client Hints headers Sec-CH-UA-* and script values from navigator.userAgentData. Current implementation behavior is subject to change. + The User Agent set will also be effective on service workers and shared workers associated with the WebView. If there are multiple WebViews associated with the same service worker or shared worker, the last User Agent set will be used. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="SetUserAgent"::: + + + + + Determines whether browser-specific accelerator keys are enabled. + + + When this setting is set to false, it disables all accelerator keys that access + features specific to a web browser, including but not limited to: + + + + Ctrl+F and F3 for Find on Page + + + Ctrl+P for Print + + + Ctrl+R and F5 for Reload + + + Ctrl+Plus and Ctrl+Minus for zooming + + + Ctrl+Shift-C and F12 for DevTools + + + Special keys for browser functions, such as Back, Forward, and Search + + + + It does not disable accelerator keys related to movement and text editing, such + as: + + + + Home, End, Page Up, and Page Down + + + Ctrl+X, Ctrl+C, Ctrl+V + + + Ctrl+A for Select All + + + Ctrl+Z for Undo + + + + Those accelerator keys will always be enabled unless they are handled in the event. + + This setting has no effect on the event. The event + will be fired for all accelerator keys, whether they are enabled or not. + + The default value of AreBrowserAcceleratorKeysEnabled is true. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="AllowWebViewShortcutKeys"::: + + + + + Determines whether password information will be autosaved. + + + When disabled, no new password data is saved and no Save/Update Password prompts are displayed. However, if there was password data already saved before disabling this setting, then that password information is auto-populated, suggestions are shown and clicking on one will populate the fields. + When enabled, password information is auto-populated, suggestions are shown and clicking on one will populate the fields, new data is saved, and a Save/Update Password prompt is displayed. The default value is false. It will apply immediately after setting. + This property has the same value as , and changing one will change the other. All WebView2s with the same will share the same value for this property, so for the WebView2s with the same profile, their and will always have the same value. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="PasswordAutosaveEnabled"::: + + + + + Determines whether general form information will be saved and autofilled. + + + General autofill information includes information like names, street and email addresses, phone numbers, and arbitrary input. This excludes password information. When disabled, no suggestions appear, and no new information is saved. + When enabled, information is saved, suggestions appear, and clicking on one will populate the form fields. The default value is true. It will apply immediately after setting. + This property has the same value as , and changing one will change the other. And all WebView2s that created with the same will share the same value for this property, so for the WebView2s with the same profile, their and will always have the same value. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="GeneralAutofillEnabled"::: + + + + + + Determines the ability of the end users to use pinching motions on touch input enabled devices to scale the web content in the WebView2. + + + When disabled, the end users cannot use pinching motions on touch input enabled devices to scale the web content in the WebView2. The default value is true. + Pinch-zoom, referred to as "Page Scale" zoom, is performed as a post-rendering step, it changes the page scale factor property and scales the surface the web page is rendered onto when user performs a pinch zooming action. It does not change the layout but rather changes the viewport and clips the web content, the content outside of the viewport isn't visible onscreen and users can't reach this content using mouse. This API only affects the Page Scale zoom and has no effect on the existing browser zoom properties ( and ) or other end user mechanisms for zooming. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="TogglePinchZoomEnabled"::: + + + + + Determines whether the end user to use swiping gesture on touch input enabled devices to navigate in WebView2. + + + Swiping gesture navigation on touch screen includes: + + + Swipe left/right (swipe horizontally) to navigate to previous/next page in navigation history. + + + Pull to refresh (swipe vertically) the current page. (This feature is currently disabled by default in the browser, to enable in WebView2, set property with --pull-to-refresh switch). + + + It defaults to true. When set to false, the end user cannot swipe to navigate or pull to refresh. This API only affects the overscrolling navigation functionality and has no effect on the scrolling interaction used to explore the web content shown in WebView2. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="ToggleSwipeNavigationEnabled"::: + + + + + Used to customize the PDF toolbar items. + + + By default, it is and so it displays all of the items. + Changes to this property apply to all CoreWebView2s in the same environment and using the same profile. + Changes to this setting apply only after the next navigation. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="ToggleHiddenPdfToolbarItems"::: + + + + + Determines whether SmartScreen is enabled when visiting web pages + + + The default value is true. + IsReputationCheckingRequired is used to control whether SmartScreen is enabled or not. + SmartScreen is enabled or disabled for all CoreWebView2s using the same user data folder. + If CoreWebView2Setting.IsReputationCheckingRequired is true for any CoreWebView2 using the same user data folder, then SmartScreen is enabled. If CoreWebView2Setting.IsReputationCheckingRequired is false for all CoreWebView2 using the same user data folder, then SmartScreen is disabled. + When it is changed, the change will be applied to all WebViews using the same user data folder on the next navigation or download. + If the newly created CoreWebview2 does not set SmartScreen to false, when navigating(Such as Navigate(), LoadDataUrl(), ExecuteScript(), etc.), the default value will be applied to all CoreWebview2 using the same user data folder. + SmartScreen of WebView2 apps can be controlled by Windows system setting "SmartScreen for Microsoft Edge", specially, for WebView2 in Windows Store apps, SmartScreen is controlled by another Windows system setting "SmartScreen for Microsoft Store apps". When the Windows setting is enabled, the SmartScreen operates under the control of the `IsReputationCheckingRequired`. When the Windows setting is disabled, the SmartScreen will be disabled regardless of the `IsReputationCheckingRequired` value set in WebView2 apps. In other words, under this circumstance the value of `IsReputationCheckingRequired` will be saved but overridden by system setting. Upon re-enabling the Windows setting, the CoreWebview2 will reference the `IsReputationCheckingRequired` to determine the SmartScreen status. + + + + + The `IsNonClientRegionSupportEnabled` property enables web pages to use the + + `app-region` CSS style. Disabling/Enabling the `IsNonClientRegionSupportEnabled` + takes effect after the next navigation. Defaults to `false`. + + When this property is `true`, then all the non-client region features + will be enabled: + Draggable Regions will be enabled, they are regions on a webpage that + are marked with the CSS attribute `app-region: drag/no-drag`. When set to + `drag`, these regions will be treated like the window's title bar, supporting + dragging of the entire WebView and its host app window; the system menu shows + upon right click, and a double click will trigger maximizing/restoration of the + window size. + When set to `false`, all non-client region support will be disabled. + The `app-region` CSS style will be ignored on web pages. + + + + Event args for the event. + + + + + The TLS error code for the invalid certificate. + + + + + URI associated with the request for the invalid certificate. + + + + + Returns the . + + + + + The action of the server certificate error detection. + + + The default value is . + + + + + Gets a object. + + + Use this to the event at a later time. + + + + + This interface represents a JavaScript exception. + + + + + The line number of the source where the exception occurred. Note that this position starts at 0. + + + + + The column number of the source where the exception occurred. Note that this position starts at 0. + + + + + The Name is the exception's class name. + + + + + The Message is the exception's message and potentially stack. + + + + + This will return all details of the exception as a JSON string. + + + + + Event args for the event. + + + + + Gets the URI of the page that requested the dialog box. + + + + + Gets the kind of JavaScript dialog box. + + + + + + Gets the message of the dialog box. + + + From JavaScript this is the first parameter passed to alert, confirm, and prompt and is empty for beforeunload. + + + + + Gets the default value to use for the result of the prompt JavaScript function. + + + This is the second parameter passed to the JavaScript prompt dialog. + + + + + Gets or sets the return value from the JavaScript prompt function if is run. + + + This value is ignored for s other than . If is not run, this value is ignored and false is returned from prompt. + + + + + + Responds with **OK** to confirm, prompt, and beforeunload dialogs. Not run this method to indicate cancel. + + + From JavaScript, this means that the confirm function and beforeunload event returns true if Accept is run. And for the prompt function it returns the value of if Accept is run and otherwise returns false. + + + + + Gets a object. + + + Use this to the event at a later time. + + + + + Event args for the event. + + + + + The host may set this flag to TRUE to cancel the screen capture. + + + If canceled, the screen capture UI is not displayed regardless of the Handled property. On the script side, it will return with a NotAllowedError as Permission denied. + + + + + The host may set this flag to TRUE to prevent the ScreenCaptureStarting event from firing on the CoreWebView2 as well. + + + By default, both the ScreenCaptureStarting event handlers on the CoreWebView2Frame and the CoreWebView2 will be invoked, with the CoreWebView2Frame event handlers invoked first. The host may set this flag to TRUE within the CoreWebView2Frame event handlers to prevent the remaining CoreWebView2 event handlers from being invoked. If the flag is set to FALSE within the CoreWebView2Frame event handlers, downstream handlers can update the Cancel property. + + + + + The frame info of the frame where the screen capture starting request originated. + + + + + Returns a object. + + + Use this deferral to defer the decision to show the Screen Capture UI. getDisplayMedia() won't call its callbacks until the deferral is completed. + + + + + Event args for the event. + + + + + Set if cancel the upcoming save/download. + + + + + Get the document origin URI of this file save operation. + + + + + Get the extension of file to be saved. + + + + + Get the full path of file to be saved. This includes the file name and extension. + + + + + Set if the default policy checking and security warning will be suppressed. + + + + + Returns a object. + + + It will put the event into a deferred state. The default policy checking and any default UI will be blocked temporarily, saving file to local won't start, until the deferral is completed. + + + + + + Event args for the event. + + + + + Mime type of content to be saved. + + + + + Indicates whether to cancel the save as before download. + + + Set this property to `TRUE` to cancel the Save As action and prevent the download from starting. returns . + + + + + Indicates if the system default dialog will be suppressed. + + + When this property is FALSE, the default Save As dialog is shown and the values assigned through `SaveAsFilePath`, `AllowReplace` and `Kind` are ignored when the event args invoke completed. When it is `TRUE`, the system dialog is skipped and all assigned values are used. + + + + + The absolute full path of save as location. + + + It includes the file name and extension. If it is not valid (for example, the root drive does not exist), Save As is denied, and is returned. If the associated download completes successfully, a target file is saved at this location. If the `Kind` property is , there will be an additional directory with resources files. + + + + + Indicates whether to allow replace old file when it already exists in the target save file path. + + + Setting this property to `TRUE` allows existing files to be replaced. Setting this property to `FALSE` will not replace existing files and will return . + + + + + The option to save content to different document. + + + If it is not allowed for the current document, method returns . + + + + + Gets a object. + + + This will defer showing the default Save As dialog. Use this to the event at a later time to perform a Save As operation. + + + + + + Provides a set of properties for a process list in the . + + + + + Get the process id of the process. + + + + + Get the kind of the process. + + + + + Event args for the event. + + + Event args for the event. + + + Event args for the event. + + + + + Gets the kind of process failure that has occurred. + + + ProcessFailedKind is a combination of process kind (for example, browser, renderer, gpu) and failure (exit, unresponsiveness). Renderer processes are further divided in main frame renderer (RenderProcessExited, RenderProcessUnresponsive) and subframe renderer (FrameRenderProcessExited). To learn about the conditions under which each failure kind occurs, see . + + + + + + Gets the reason for the process failure. + + + Some of the reasons are only applicable to specific values of , and the following values always return the indicated reason value: + + + + ProcessFailedKind + Reason + + + BrowserProcessExited + + Unexpected + + + + RenderProcessUnresponsive + + Unresponsive + + + + + For other values, the reason may be any of the reason values. To learn about what these values mean, see . + + + + + + Gets the exit code of the failing process, for telemetry purposes. + + + The exit code is always 1 when is , and STILL_ACTIVE(259) when is . + + + + + + Gets a description of the failing process, assigned by the WebView2 Runtime. + + + This is a technical English term appropriate for logging or development purposes, and not localized for the end user. It applies to utility processes (for example, "Audio Service", "Video Capture") and plugin processes (for example, "Flash"). The returned string is empty if the WebView2 Runtime did not assign a description to the process. + + + + + Gets the collection of s for frames in the that were being rendered by the failed process. + + + The content in these frames is replaced with an error page. + This is only available when is ; the returned collection is empty for all other process failure kinds, including the case in which the failed process was the renderer for the main frame and subframes within it, for which the failure kind is . + + + + + When ProcessFailed occurred due to a failed Code Integrity check, this property returns the full path of the file that was prevented from loading on the system. + + The webview2 process which tried to load the DLL will fail with exit code STATUS_INVALID_IMAGE_HASH(-1073740760). + + + + Provides a set of properties for a process list with extended information in the . + + + + + Provides the of the current process. + + + + + Provides the collection of associated s which are actively running (showing or hiding UI elements) in this renderer process. + + + AssociatedFrameInfos will only be populated when this corresponds to a renderer process. Non-renderer processes will always have an empty AssociatedFrameInfo. AssociatedFrameInfos may also be empty for renderer processes that have no active frames. + + + :::code language="csharp" source="../code/sample/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs" id="AssociatedFrameInfos"::: + + + + + Settings used by the method. + + + Settings used by the method. + + + + + The orientation can be portrait or landscape. + + + The default orientation is portrait. See . + + + + + The scale factor is a value between 0.1 and 2.0. + + + The default is 1.0. If an invalid value is provided, the current value is not changed and an ArgumentException is thrown. + + + + + The page width in inches. + + + The default width is 8.5 inches. If the provided page width is less than or equal to zero, the current value is not changed and an ArgumentException is thrown. + + + + + The page height in inches. + + + The default height is 11 inches. If the provided page height is less than or equal to zero, the current value is not changed and an ArgumentException is thrown. + + + + + The top margin in inches. + + + The default is 1 cm, or ~0.4 inches. A margin cannot be less than zero. If an invalid value is provided, the current value is not changed and an ArgumentException is thrown. + + + + + The bottom margin in inches. + + + The default is 1 cm, or ~0.4 inches. A margin cannot be less than zero. If an invalid value is provided, the current value is not changed and an ArgumentException is thrown. + + + + + The left margin in inches. + + + The default is 1 cm, or ~0.4 inches. A margin cannot be less than zero. If an invalid value is provided, the current value is not changed and an ArgumentException is thrown. + + + + + The right margin in inches. + + + The default is 1 cm, or ~0.4 inches. A margin cannot be less than zero. If an invalid value is provided, the current value is not changed and an ArgumentException is thrown. + + + + + true if background colors and images should be printed. + + + The default value is false. + + + + + true if only the current end user's selection of HTML in the document should be printed. + + + The default value is false. + + + + + true if header and footer should be printed. + + + The default value is false. The header consists of the date and time of printing, and the title of the page. The footer consists of the URI and page number. The height of the header and footer is 0.5 cm, or ~0.2 inches. + + + + + The title in the header if is true. + + + The default value is the title of the current document. If an empty string or null value is provided, no title is shown in the header. + + + + + The URI in the footer if is true. + + + The default value is the current URI. If an empty string or null value is provided, no URI is shown in the footer. + + + + + Page range to print. Defaults to empty string, which means print all pages. + + + The PageRanges property is a list of page ranges specifying one or more pages that should be printed separated by commas. Any whitespace between page ranges is ignored. + A valid page range is either a single integer identifying the page to print, or a range in the form [start page]-[last page] where start page and last page are integers identifying the first and last inclusive pages respectively to print. + Every page identifier is an integer greater than 0 unless wildcards are used (see below examples). + The first page is 1. + + In a page range of the form [start page]-[last page] the start page number must be larger than 0 and less than or equal to the document's total page count. + If the start page is not present, then 1 is used as the start page. + The last page must be larger than the start page. + If the last page is not present, then the document total page count is used as the last page. + + Repeating a page does not print it multiple times. To print multiple times, use the property. + + The pages are always printed in ascending order, even if specified in non-ascending order. + + If page range is not valid or if a page is greater than document total page count, ArgumentException is thrown. + + The following examples assume a document with 20 total pages. + + + + Example + Result + Notes + + + "2" + Page 2 + + + + "1-4, 9, 3-6, 10, 11" + Pages 1-6, 9-11 + + + + "1-4, -6" + Pages 1-6 + The "-6" is interpreted as "1-6". + + + "2-" + Pages 2-20 + The "2-" is interpreted as "pages 2 to the end of the document". + + + "4-2, 11, -6" + Invalid + "4-2" is an invalid range. + + + "-" + Pages 1-20 + The "-" is interpreted as "page 1 to the end of the document". + + + "1-4dsf, 11" + Invalid + + + + "2-2" + Page 2 + + + + + + + + Prints multiple pages of a document on a single piece of paper. Choose from 1, 2, 4, 6, 9 or 16. + + + The default value is 1. + + If an invalid value is provided, ArgumentException is thrown. + + Below examples shows print output for PagesPerSide and Duplex. + + + + PagesPerSide + Total pages + Two-sided printing + Result + + + 1 + 1 + - + 1 page on the front side. + + + 2 + 1 + Yes + 1 page on the front side. + + + 2 + 4 + - + 2 pages on the first paper and 2 pages on the next paper. + + + 2 + 4 + Yes + 2 pages on the front side and 2 pages on back side. + + + 4 + 4 + Yes + 4 pages on the front side. + + + 4 + 8 + Yes + 4 pages on the front side and 4 pages on the back side. + + + + + + + Number of copies to print. Minimum value is 1 and the maximum copies count is 999. + + + The default value is 1. + + + + + Printer collation. + + + See for descriptions of collation. The default value is . + + Printing uses default value of printer's collation if an invalid value is provided for the specific printer. + + This value is ignored in method. + + + + + Printer color mode. + + + See for descriptions of color modes. The default value is . + + Printing uses default value of printer supported color if an invalid value is provided for the specific printer. + + + + + Printer duplex settings. + + + See for descriptions of duplex. The default value is . + + Printing uses default value of printer's duplex if an invalid value is provided for the specific printer. + + This value is ignored in method. + + + + + Printer media size. + + + See for descriptions of media size. The default value is . + + If media size is , you should set the and . + + Printing uses default value of printer supported media size if an invalid value is provided for the specific printer. + + This value is ignored in method. + + + + + The name of the printer to use. + + + Defaults to empty string. If the printer name is empty string or null, then it prints to the default printer on the user OS. + + If provided printer name doesn't match with the name of any installed printers on the user OS, the method returns with . + + Use [PrintCapabilities](/dotnet/api/system.printing.printcapabilities) class to enumerate available printers. + + This value is ignored in method. + + + + + This mostly represents a combined win32 POINTER_INFO, POINTER_TOUCH_INFO, and POINTER_PEN_INFO object. + + + + + Gets or sets the PointerKind of the pointer event. + + + This corresponds to the pointerKind property of the POINTER_INFO struct. The values are defined by the POINTER_INPUT_KIND enum in the Windows SDK (_winuser.h_). Supports PT_PEN and PT_TOUCH. + + + + + Gets or sets the PointerId of the pointer event. + + + This corresponds to the pointerId property of the POINTER_INFO struct as defined in the Windows SDK (_winuser.h_). + + + + + Gets or sets the FrameID of the pointer event. + + + This corresponds to the frameId property of the POINTER_INFO struct as defined in the Windows SDK (_winuser.h_). + + + + + Gets or sets the PointerFlags of the pointer event. + + + This corresponds to the pointerFlags property of the POINTER_INFO struct. The values are defined by the POINTER_FLAGS constants in the Windows SDK (_winuser.h_). + + + + + Gets or sets the PointerDeviceRect of the sourceDevice property of the POINTER_INFO struct as defined in the Windows SDK (_winuser.h_). + + + + + Gets or sets the DisplayRect of the sourceDevice property of the POINTER_INFO struct as defined in the Windows SDK (_winuser.h_). + + + + + Gets or sets the PixelLocation of the pointer event. + + + This corresponds to the ptPixelLocation property of the POINTER_INFO struct as defined in the Windows SDK (_winuser.h_). + + + + + Gets or sets the HimetricLocation of the pointer event. + + + This corresponds to the ptHimetricLocation property of the POINTER_INFO struct as defined in the Windows SDK (_winuser.h_). + + + + + Gets or sets the PixelLocationRaw of the pointer event. + + + This corresponds to the ptPixelLocationRaw property of the POINTER_INFO struct as defined in the Windows SDK (_winuser.h_). + + + + + Gets or sets the HimetricLocationRaw of the pointer event. + + + This corresponds to the ptHimetricLocationRaw property of the POINTER_INFO struct as defined in the Windows SDK (_winuser.h_). + + + + + Gets or sets the Time of the pointer event. + + + This corresponds to the dwTime property of the POINTER_INFO struct as defined in the Windows SDK (_winuser.h_). + + + + + Gets or sets the HistoryCount of the pointer event. + + + This corresponds to the historyCount property of the POINTER_INFO struct as defined in the Windows SDK (_winuser.h_). + + + + + Gets or sets the InputData of the pointer event. + + + This corresponds to the InputData property of the POINTER_INFO struct as defined in the Windows SDK (_winuser.h_). + + + + + Gets or sets the KeyStates of the pointer event. + + + This corresponds to the dwKeyStates property of the POINTER_INFO struct as defined in the Windows SDK (_winuser.h_). + + + + + Gets or sets the PerformanceCount of the pointer event. + + + This corresponds to the PerformanceCount property of the POINTER_INFO struct as defined in the Windows SDK (_winuser.h_). + + + + + Gets or sets the ButtonChangeKind of the pointer event. + + + This corresponds to the ButtonChangeKind property of the POINTER_INFO struct. The values are defined by the POINTER_BUTTON_CHANGE_KIND enum in the Windows SDK (_winuser.h_). + + + + + Gets or sets the PenFlags of the pointer event. + + + This corresponds to the penFlags property of the POINTER_PEN_INFO struct. The values are defined by the PEN_FLAGS constants in the Windows SDK (_winuser.h_). + + + + + Gets or sets the PenMask of the pointer event. + + + This corresponds to the penMask property of the POINTER_PEN_INFO struct. The values are defined by the PEN_MASK constants in the Windows SDK (_winuser.h_). + + + + + Gets or sets the PenPressure of the pointer event. + + + This corresponds to the pressure property of the POINTER_PEN_INFO struct as defined in the Windows SDK (_winuser.h_). + + + + + Gets or sets the PenRotation of the pointer event. + + + This corresponds to the rotation property of the POINTER_PEN_INFO struct as defined in the Windows SDK (_winuser.h_). + + + + + Gets or sets the PenTiltX of the pointer event. + + + This corresponds to the tiltX property of the POINTER_PEN_INFO struct as defined in the Windows SDK (_winuser.h_). + + + + + Gets or sets the PenTiltY of the pointer event. + + + This corresponds to the tiltY property of the POINTER_PEN_INFO struct as defined in the Windows SDK (_winuser.h_). + + + + + Gets or sets the TouchFlags of the pointer event. + + + This corresponds to the touchFlags property of the POINTER_TOUCH_INFO struct. The values are defined by the TOUCH_FLAGS constants in the Windows SDK (_winuser.h_). + + + + + Gets or sets the TouchMask of the pointer event. + + + This corresponds to the touchMask property of the POINTER_TOUCH_INFO struct. The values are defined by the TOUCH_MASK constants in the Windows SDK (_winuser.h_). + + + + + Gets or sets the TouchContact of the pointer event. + + + This corresponds to the rcContact property of the POINTER_TOUCH_INFO struct as defined in the Windows SDK (_winuser.h_). + + + + + Gets or sets the TouchContactRaw of the pointer event. + + + This corresponds to the rcContactRaw property of the POINTER_TOUCH_INFO struct as defined in the Windows SDK (_winuser.h_). + + + + + Gets or sets the TouchOrientation of the pointer event. + + + This corresponds to the orientation property of the POINTER_TOUCH_INFO struct as defined in the Windows SDK (_winuser.h_). + + + + + Gets or sets the TouchPressure of the pointer event. + + + This corresponds to the pressure property of the POINTER_TOUCH_INFO struct as defined in the Windows SDK (_winuser.h_). + + + + + Provides a set of properties for a permission setting. + + + + + The kind of the permission setting. + + + + + The origin of the permission setting. + + + + + The state of the permission setting. + + + + + + Event args for the event. + + + Event args for the event. + + + Event args for the event. + + + + + Gets the origin of the web content that requests the permission. + + + + + Gets the kind of the permission that is requested. + + + + + true when the permission request was initiated through a user gesture such as clicking an anchor tag with target. + + + Being initiated through a user gesture does not mean that user intended to access the associated resource. + + + + + Gets or sets the status of a permission request. For example, whether the request is granted. + + + The default value is . + + + + + Gets a object. + + + Use the deferral object to make the permission decision at a later time. The deferral only applies to the current request, and does not prevent the PermissionRequested event from getting raised for new requests. However, for some permission kinds the WebView will avoid creating a new request if there is a pending request of the same kind. + + + + + The host may set this flag to TRUE to prevent the PermissionRequested event from firing on the CoreWebView2 as well. + + By default, both the PermissionRequested on the CoreWebView2Frame and CoreWebView2 will be fired. + + + + Set the SavesInProfile property to FALSE to not persist the state beyond the current request, and to continue to receive PermissionRequested events for this origin and permission kind. + + + The permission state set from the PermissionRequested event is saved in the profile by default; it is persisted across sessions and becomes the new default behavior for future PermissionRequested events. Browser heuristics can affect whether the event continues to be raised when the state is persisted. + + + + + Event args for the . + + + + + The origin of the web content that sends the notification, such as https://example.com/ or https://www.example.com/. + + + + + The notification that was received. + + + You can access the properties on the Notification object to show your own notification. + + + + + Sets whether the is handled by the host after the event handler completes or if there is a deferral then after the deferral is completed. + + + If is set to true then WebView will not display the notification with the default UI, and the host will be responsible for handling the notification and for letting the web content know that the notification has been displayed, clicked, or closed. You must set to true before you call , and , otherwise they will fail with HRESULT_FROM_WIN32(ERROR_INVALID_STATE). If after the event handler or deferral completes is set to false then WebView will display the default notification UI. Note that you cannot un-handle this event once you have set to be true. The initial value is false. + + + + + Gets a object. + + + Use this to the event at a later time. + + + + + Event args for the event. + + + + + Gets the region kind corresponding to the event. + + + + + Event args for the event. + + + Event args for the event. + + + Event args for the event. + + + + + Gets the target uri of the new window request. + + + + + Gets the new window or sets a WebView as a result of the new window requested. + + + Provides a WebView as the target for a window.open() from inside the requesting WebView. If this is set, the top-level window of this WebView is returned as the opened [WindowProxy](https://developer.mozilla.org/docs/glossary/windowproxy) to the opener script. If this is not set, then is checked to determine behavior for the . + The methods which should affect the new web contents like has to be called and completed before setting NewWindow. Other methods which should affect the new web contents like have to be called after setting NewWindow. It is best not to use before setting NewWindow, otherwise it may not work for later added scripts. + WebView provided in the NewWindow property must be on the same as the opener WebView and cannot be navigated. Changes to settings should be made before setting NewWindow to ensure that those settings take effect for the newly setup WebView. The new WebView must have the same profile as the opener WebView. + + + + + Indicates whether the event is handled by host. + + + If this is false and no is set, the WebView opens a popup window and returns the opened WindowProxy to the opener script. Note that in this case, there is no avenue to control the popup window from the app. If set to true and no is set for window.open(), the opened proxy is for a dummy window object, but this window does not load and is immediately closed. The default value is false. + + + + + true when the new window request was initiated through a user gesture such as selecting an anchor tag with target. + + + The Microsoft Edge popup blocker is disabled for WebView so the app is able to use this flag to block non-user initiated popups. + + + + + Gets the window features specified by the window.open() call. These features should be considered for positioning and sizing of new WebView windows. + + + + + Gets a object and put the event into a deferred state. + + + Use this to the window open request at a later time. While this event is deferred the opener window returns a WindowProxy to an un-navigated window, which navigates when the deferral is complete. + + + + + Gets the name of the new window. + + + This window can be created via window.open(url, windowName), where the windowName parameter corresponds to Name property. + If no windowName is passed to window.open, then the Name property will be set to an empty string. Additionally, if window is opened through other means, such as <a target="windowName"> or <iframe name="windowName">, then the Name property will be set accordingly. In the case of target=_blank, the Name property will be an empty string. + Opening a window via Ctrl+clicking a link would result in the Name property being set to an empty string. + + + + + The frame info of the frame where the new window request originated. + + + The OriginalSourceFrameInfo is a snapshot of frame information at the time when the new window was requested. See for details on frame properties. + + + + + Event args for the event. + + + Event args for the event. + + + Event args for the event. + + + + + Gets the uri of the requested navigation. + + + + + true when the new window request was initiated through a user gesture. + + + Examples of user initiated requests are: + - Selecting an anchor tag with target + - Programmatic window open from a script that directly run as a result of user interaction such as via onclick handlers. + Non-user initiated requests are programmatic window opens from a script that are not directly triggered by user interaction, such as those that run while loading a new page or via timers. + The Microsoft Edge popup blocker is disabled for WebView so the app is able to use this flag to block non-user initiated popups. + + + + + true when the navigation is redirected. + + + + + Gets the HTTP request headers for the navigation. + + + Note, you are not able to modify the HTTP request headers in a event. + + + + + + Determines whether to cancel the navigation. + + + If set to true, the navigation is no longer present and the content of the current page is intact. For performance reasons, GET HTTP requests may happen, while the host is responding. You may set cookies and use part of a request for the navigation. Navigations to about schemes are cancellable, unless `msWebView2CancellableAboutNavigations` feature flag is disabled. Cancellation of frame navigation to `srcdoc` is not supported and will be ignored. + + + + + Gets the ID of the navigation. + + + + + Additional allowed frame ancestors set by the host app. + + + The app may set this property to allow a frame to be embedded by additional ancestors besides what is allowed by http header [X-Frame-Options](https://developer.mozilla.org/docs/Web/HTTP/Headers/X-Frame-Options) and [Content-Security-Policy frame-ancestors directive](https://developer.mozilla.org/docs/Web/HTTP/Headers/Content-Security-Policy/frame-ancestors). + If set, a frame ancestor is allowed if it is allowed by the additional allowed frame ancestors or original http header from the site. + Whether an ancestor is allowed by the additional allowed frame ancestors is done the same way as if the site provided it as the source list of the Content-Security-Policy frame-ancestors directive. + For example, if https://example.com and https://www.example.com are the origins of the top page and intermediate iframes that embed a nested site-embedding iframe, and you fully trust those origins, you should set this property to https://example.com https://www.example.com. + + This property gives the app the ability to use iframe to embed sites that otherwise could not be embedded in an iframe in trusted app pages. + This could potentially subject the embedded sites to [Clickjacking](https://wikipedia.org/wiki/Clickjacking) attack from the code running in the embedding web page. Therefore, you should only set this property with origins of fully trusted embedding page and any intermediate iframes. + Whenever possible, you should use the list of specific origins of the top and intermediate frames instead of wildcard characters for this property. + This API is to provide limited support for app scenarios that used to be supported by <webview> element in other solutions like JavaScript UWP apps and Electron. + You should limit the usage of this property to trusted pages, and specific navigation target url, by checking the , and . + + This property is ignored for top level document navigation. + + + + + Gets the navigation kind of the navigation. + + + + + Event args for the event. + + + Event args for the event. + + + + + true when the navigation is successful; false for a navigation that ended up in an error page (failures due to no network, DNS lookup failure, HTTP server responds with 4xx). Note that WebView2 will report the navigation as 'unsuccessful' if the load for the navigation did not reach the expected completion for any reason. Such reasons include potentially catastrophic issues such network and certificate issues, but can also be the result of intended actions such as the app canceling a navigation or navigating away before the original navigation completed. Applications should not just rely on this flag, but also consider the reported WebErrorStatus to determine whether the failure is indeed catastrophic in their context. + + + WebErrorStatuses that may indicate a non-catastrophic failure include: + + + + + + + + + + + + + + This may also be false for additional scenarios such as window.stop() run on navigated page. + + + + + Gets the error code if the navigation failed. + + + + + Gets the ID of the navigation. + + + + + The HTTP status code of the navigation if it involved an HTTP request. For instance, this will usually be 200 if the request was successful, 404 if a page was not found, etc. See https://developer.mozilla.org/docs/Web/HTTP/Status for a list of common status codes. + + + The HttpStatusCode property will be 0 in the following cases: + + + The navigation did not involve an HTTP request. For instance, if it was a navigation to a file:// URL, or if it was a same-document navigation. + + + The navigation failed before a response was received. For instance, if the hostname was not found, or if there was a network error. + + + In those cases, you can get more information from the and properties. + + If the navigation receives a successful HTTP response, but the navigated page calls window.stop() before it finishes loading, then HttpStatusCode may contain a success code like 200, but will be false and will be . + + Since WebView2 handles HTTP continuations and redirects automatically, it is unlikely for HttpStatusCode to ever be in the 1xx or 3xx ranges. + + + + + Event args for the event. + + + + + Gets the reason for WebView to raise the event. + + + + + Indicates whether the event has been handled by the app. + + + If the app has moved the focus to another desired location, it should set Handled property to true. When Handled property is false after the event handler returns, default action is taken. The default action is to try to find the next tab stop child window in the app and try to move focus to that window. If no other window exists to move focus, focus is cycled within the web content of the WebView. + + + + + Event args for the event. + + + + + Gets the URI with the external URI scheme to be launched. + + + + + Gets the origin initiating the external URI scheme launch. If the `InitiatingOrigin` is [opaque](https://html.spec.whatwg.org/multipage/origin.html#concept-origin-opaque), the `InitiatingOrigin` reported in the event args will be its precursor origin. The precursor origin is the origin that created the opaque origin. For example, if a frame on example.com opens a subframe with a different opaque origin, the subframe's precursor origin is example.com. + + + The origin will be an empty string if the request is initiated by calling on the external URI scheme. If a script initiates the navigation, the `InitiatingOrigin` will be the top-level document's `Source`, i.e. if `window.location` is set to `"calculator://", the `InitiatingOrigin` will be set to `calculator://`. If the request is initiated from a child frame, the `InitiatingOrigin` will be the source of that child frame. + + + + + true when the launching external URI scheme request was initiated through a user gesture. + + + + + Determines whether to cancel the navigation. + + + + + Gets a object and put the event into a deferred state. + + + Use this to the launching external URI scheme request at a later time. + + + + + Provides a set of properties for a frame in the . + + + Provides a set of properties for a frame in the . + + + + + Gets the value of frame's window.name property. The default value equals to frame html tag declaring it, as in <iframe name="frame-name" ...>. + + + The returned string is empty when the frame has no name attribute and no assigned value for window.name. + + + + + The URI of the document in the frame. + + + + + This parent frame's . ParentFrameInfo will only be populated when obtained via calling . objects obtained via will always have a null ParentFrameInfo. This property is also null for the top most document in the which has no parent frame. + + + ParentFrameInfo could be out of date as it's a snapshot. + + + + + The unique identifier of the frame associated with the current . It's the same kind of ID as with the and . FrameId will only be populated when obtained calling . objects obtained via will always have an invalid frame Id 0. + + + FrameId could be out of date as it's a snapshot. If there's created or destroyed or event or event after the asynchronous call starts, you may want to call the asynchronous method again to get the updated s. + + + + + Gets the kind of the frame. FrameKind will only be populated when obtained calling . ` objects obtained via will always have the default value . + + + FrameKind could be out of date as it's a snapshot. + + + + + Event args for the event. + + + + + Gets the created frame. + + + + + + Representation of a DOM [FileSystemHandle](https://developer.mozilla.org/docs/Web/API/FileSystemHandle) object. + + + + + The kind of the FileSystemHandle. It can either be a file or a directory. + + + + + The path to the FileSystemHandle. + + + + + The permissions granted to the FileSystemHandle. + + + + + Representation of a DOM[File](https://developer.mozilla.org/docs/Web/API/File) object passed via WebMessage. + + + You can use this object to obtain the path of a File dropped on WebView2. + + + + + The absolute file path. + + + + + The result for . + + + + + This property is true if successfully executed script with no unhandled exceptions and the result is available in the property. + + + + + A function that has no explicit return value returns undefined. If the script that was run throws an unhandled exception, then the result is also null. + + + + + If Succeeded is false, you can use this property to get the unhandled exception thrown by script execution + + + + + If Succeeded is true and the result of script execution is a string, this method provides the value of the string result, and we will get the false var value when the js result is not string type. + + + + + Event args for the event. + + + + + Returns the for the download that has started. + + + + + Indicates whether to cancel the download. + + + If canceled, the download save dialog is not displayed regardless of the value and the state is changed to with interrupt reason . + + + + + The path to the file. + + + If setting the path, the host should ensure that it is an absolute path, including the file name, and that the path does not point to an existing file. If the path points to an existing file, the file will be overwritten. If the directory does not exist, it is created. + + + + + Indicates whether to hide the default download dialog. + + + If set to true, the default download dialog is hidden for this download. The download progresses normally if it is not canceled, there will just be no default UI shown. By default the value is false and the default download dialog is shown. + + + + + Gets a object. + + + Use this to the event at a later time. + + + + + Event args for the event. + + + + + Gets the ID of the navigation. + + + + + A Receiver is created for a particular DevTools Protocol event and allows you to subscribe and unsubscribe from that event. + + + Obtained from the WebView object using . + + + + + + DevToolsProtocolEventReceived is raised when the corresponding DevToolsProtocol event is raised. + + + + + + Event args for the event. + + + Event args for the event. + + + + + Gets the parameter object of the corresponding DevToolsProtocol event represented as a JSON string. + + + + + Gets the sessionId of the target where the event originates from. Empty string is returned as sessionId if the event comes from the default session for the top page. + + + + + Represents the information regarding the context menu target. Includes the context selected and the appropriate data used for the actions of a context menu. + + + + + Gets the kind of context that the user selected as . + + + + + Returns true if the context menu is requested on an editable component. + + + + + Returns true if the context menu was requested on the main frame and false if invoked on another frame. + + + + + Gets the uri of the page. + + + + + Gets the uri of the frame. Will match the if is true. + + + + + Returns true if the context menu is requested on HTML containing an anchor tag. + + + + + Gets the uri of the link (if is true, null otherwise). + + + + + Returns true if the context menu is requested on text element that contains an anchor tag. + + + + + Gets the text of the link (if is true, null otherwise). + + + + + Returns true if the context menu is requested on HTML containing a source uri. + + + + + Gets the active source uri of element (if is true, null otherwise). + + + + + Returns true if the context menu is requested on a selection. + + + + + Gets the selected text (if is true, null otherwise). + + + + + Event args for the event. + + + Will contain the selection information and a collection of all of the default context menu items that the WebView would show. Allows the app to draw its own context menu or add/remove from the default context menu. + + + + + Gets the collection of objects. + + + + + Gets the target information associated with the requested context menu. + + + + + + Gets the coordinates where the context menu request occurred in relation to the upper left corner of the WebView bounds. + + + + + Gets or sets the selected 's . + + + When the app handles the event, it can set this to report the selected command from the context menu. The default value is -1 which means that no selection occurred. The app can also set the command ID for a custom context menu item, which will cause the event to be fired, however while command IDs for each custom context menu item is unique during a ContextMenuRequested event, WebView may reassign command ID values of deleted custom ContextMenuItems to new objects and the command ID assigned to the same custom item can be different between each app runtime. The command ID should always be obtained via the property. + + + + + Gets or sets whether the event is handled by host after the event handler completes or after the deferral is completed if there is a taken . + + + If Handled is set to true then WebView2 will not display a context menu and will instead use the property to indicate which, if any, context menu item to invoke. If after the event handler or deferral completes, Handled is set to false then WebView will display a context menu based on the contents of the property. The default value is false. + + + + + Returns a object. + + + Use this operation to complete the event when the custom context menu is closed. + + + + + Represents a context menu item of a context menu displayed by WebView. + + + + + Gets the unlocalized name for the . + + + Use this to distinguish between context menu item types. This will be the English label of the menu item in lower camel case. For example, the "Save as" menu item will be "saveAs". Extension menu items will be "extension", custom menu items will be "custom" and spellcheck items will be "spellCheck". + Some example context menu item names are: + + + + "saveAs" + + + "copyImage" + + + "openLinkInNewWindow" + + + + + + + Gets the localized label for the . Will contain an ampersand for characters to be used as keyboard accelerator. + + + + + Gets the Command ID for the . + + + Use this to report the in event. + + + + + Gets the localized keyboard shortcut for this . + + + It will be the empty string if there is no keyboard shortcut. This is text intended to be displayed to the end user to show the keyboard shortcut. For example this property is Ctrl+Shift+I for the "Inspect" . + + + + + Gets the Icon for the in PNG, Bitmap or SVG formats in the form of an IStream. + + + Stream will be rewound to the start of the image data before being read. + + + + + Gets the kind of as . + + + + + Gets or sets the enabled property of the . Must only be used in the case of a custom context menu item. + + + The default value for this is true. + + + + + Gets or sets the checked property of the . + + + Must only be used for custom context menu items that are of kind or . + + + + + Gets the list of children menu items if the kind is . + + + If the kind is not , will return null. + + + + + CustomItemSelected event is raised when the user selects this . + + + Will only be raised for end developer created context menu items. + + + + + Event args for the event. + + + + + true if the loaded content is an error page. + + + + + Gets the ID of the navigation. + + + + + This class is an extension of the class to support visual hosting. + + + This class is an extension of the class to support visual hosting. + + + This class is an extension of the class to support visual hosting. + + + This class is an extension of the class to support visual hosting. + + + + + Gets or sets the root visual in the hosting app's visual tree. + + + This visual is where the WebView will connect its visual tree. The app uses this visual to position the WebView within the app. The app still needs to use the property to size the WebView. The RootVisualTarget property can be an IDCompositionVisual or a Windows::UI::Composition::ContainerVisual. WebView will connect its visual tree to the provided visual before returning from the property setter. The app needs to commit on its device setting the RootVisualTarget property. The RootVisualTarget property supports being set to null to disconnect the WebView from the app's visual tree. + + + + + Gets the current cursor that WebView thinks it should be. + + + The cursor should be set in WM_SETCURSOR through Mouse.SetCursor or set on the corresponding parent/ancestor HWND of the WebView through ::SetClassLongPtr. The HCURSOR can be freed so CopyCursor/DestroyCursor is recommended to keep your own copy if you are doing more than immediately setting the cursor. + + + + + Gets the current system cursor ID reported by the underlying rendering engine for WebView. + + + + + The event is raised when WebView thinks the cursor should be changed. + + + For example, when the mouse cursor is currently the default cursor but is then moved over text, it may try to change to the IBeam cursor. + It is expected for the developer to send messages (in addition to messages) through . This is to ensure that the mouse is actually within the WebView that sends out CursorChanged events. + + + + + Sends mouse input to the WebView. + + The mouse event kind. + The virtual keys associated with the eventKind. + The amount of wheel movement. + The absolute position of the mouse, or the amount of motion since the last mouse event was generated, depending on the eventKind. + + If eventKind is or , then mouseData specifies the amount of wheel movement. + A positive value indicates that the wheel was rotated forward, away from the user; a negative value indicates that the wheel was rotated backward, toward the user. One wheel click is defined as WHEEL_DELTA, which is 120. If eventKind is , , or , then mouseData specifies which X buttons were pressed or released. This value should be 1 if the first X button is pressed/released and 2 if the second X button is pressed/released. If eventKind is , then virtualKeys, mouseData, and point should all be zero. If eventKind is any other value, then mouseData should be zero. point is expected to be in the client coordinate space of the WebView. To track mouse events that start in the WebView and can potentially move outside of the WebView and host application, calling SetCapture and ReleaseCapture is recommended. To dismiss hover popups, it is also recommended to send messages. + + + + + Sends pen or pointer input to the WebView. + + The pointer event kind. + The pointer information. + + Accepts touch or pen pointer input of kinds defined in . + Any pointer input from the system must be converted into a first. + + + + + Call this method to inform the CoreWebView2CompositionController that a drag operation has left the WebView. + + + Corresponds to the [ICoreDropOperationTarget.LeaveAsync](/uwp/api/windows.applicationmodel.datatransfer.dragdrop.core.icoredropoperationtarget.leaveasync) method when performing a drag operation into the WebView. + + + + + This event is raised when elements on the page with "app-region" CSS property values corresponding to non-client regions change. Use the to see the kind of non-client region that changed. + + + + + Call this method to perform hit-testing inside of your message loop when the message is WM_NCHITTEST. + + The point parameter is expected to be in the client coordinate space of the WebView2. + The type of region which contains the point. + + + + This method retrieves the non-client regions on the page which corresponds to a given kind . + + The kind of non-client region. + This method returns a vector of rectangles. + + This method can be used inside the event handler to get the list of rects for the specific region that changed. + + + + + Event args for the event. + + + + + Returns host name of the server that requested client certificate authentication. + + + Normalization rules applied to the hostname are: + + + + Convert to lowercase characters for ascii characters. + + + Punycode is used for representing non ascii characters. + + + Strip square brackets for IPV6 address. + + + + + + + Returns port of the server that requested client certificate authentication. + + + + + Returns true if the server that issued this request is an http proxy. Returns false if the server is the origin server. + + + + + The list contains Base64 encoding of DER encoded distinguished names of certificate authorities allowed by the server. + + + + + Returns the list of when client certificate authentication is requested. The list contains mutually trusted CA certificate. + + + + + Selected certificate to respond to the server. + + + + + Indicates whether to cancel the certificate selection. + + + If canceled, the request is aborted regardless of the property. By default the value is false. + + + + + Indicates whether the event has been handled by host. + + + Set to true to respond to the server with or without a certificate. If this flag is true with a it responds to the server with the selected certificate otherwise respond to the server without a certificate. By default the value of and are false and display default client certificate selection dialog prompt to allow the user to choose a certificate. The is ignored unless is set to true. + + + + + Gets a object. + + + Use this to the event at a later time. + + + + + Event args for the event. + + + + + The kind of browser process exit that has occurred. + + + + + The process ID of the browser process that has exited. + + + + + Browser extension installed on current profile. + + + + + This is the browser extension's ID. This is the same browser extension ID returned by the browser extension API [chrome.runtime.id](https://developer.mozilla.org/docs/Mozilla/Add-ons/WebExtensions/API/runtime/id). Please see that documentation for more details on how the ID is generated. After an extension is removed, calling Id will return the id of the extension that is removed. + + + + + This is the browser extension's name. This value is defined in this browser extension's manifest.json file. If manifest.json define extension's localized name, this value will be the localized version of the name. Please see [Manifest.json name](https://developer.mozilla.org/docs/Mozilla/Add-ons/WebExtensions/manifest.json/name) for more details. + + + + + If IsEnabled is true then the Extension is enabled and running in WebView instances. If it is false then the Extension is disabled and not running in WebView instances. When a Extension is first installed, IsEnable are default to be true. IsEnabled is persisted per profile. After an extension is removed, calling IsEnabled will return the value at the time it was removed. + + + + + Removes this browser extension from its WebView2 Profile. The browser extension is removed immediately including from all currently running HTML documents associated with this WebView2 Profile. The removal is persisted and future uses of this profile will not have this extension installed. After an extension is removed, calling Remove again will cause an exception. + + + + + Sets whether this browser extension is enabled or disabled. This change applies immediately to the extension in all HTML documents in all WebView2s associated with this profile. After an extension is removed, calling Enable will not change the value of IsEnabled. + + + + + Represents a Basic HTTP authentication response that contains a user name and a password as according to RFC7617 (https://tools.ietf.org/html/rfc7617) + + + + + User name provided for authentication. + + + + + Password provided for authentication. + + + + + Event args for the BasicAuthenticationRequested event. Will contain the request that led to the HTTP authorization challenge, the challenge and allows the host to provide authentication response or cancel the request. + + + + + The URI that led to the authentication challenge. For proxy authentication requests, this will be the URI of the proxy server. + + + + + The authentication challenge string. + + + + + Response to the authentication request with credentials. + + + This object will be populated by the app if the host would like to provide authentication credentials. + + + + + Indicates whether to cancel the authentication request. + + + false by default. If set to true, Response will be ignored. + + + + + Gets a object. + + + Use this Deferral to defer the decision to show the Basic Authentication dialog. + + + + + Event args for the event. + + + Event args for the event. + + + + + Gets the key event kind that caused the event to run. + + + + + Gets the Win32 virtual key code of the key that was pressed or released. + + + It is one of the Win32 virtual key constants such as VK_RETURN or an (uppercase) ASCII value such as 'A'. Verify whether Ctrl or Alt are pressed by running GetKeyState(VK_CONTROL) or GetKeyState(VK_MENU). + + + + + Gets the LPARAM value that accompanied the window message. + + + See the documentation for the WM_KEYDOWN and WM_KEYUP messages. + + + + + Gets a representing the information passed in the LPARAM of the window message. + + + + + Indicates whether the event is handled by host. + + + + For browser accelerator keys, when an accelerator key is pressed, the propagation and processing order is: + + 1. A CoreWebView2Controller.AcceleratorKeyPressed event is raised + 1. WebView2 browser feature accelerator key handling + 1. Web Content Handling: If the key combination isn't reserved for browser actions, the key event propagates to the web content, where JavaScript event listeners can capture and respond to it. + + If `Handled` property is set to true anywhere along the path, the event propagation stops, and web content will not receive the key and this prevents the WebView from performing the default action for this accelerator key. Otherwise the WebView will perform the default action for the accelerator key. + + + + + This `IsBrowserAcceleratorKeyEnabled` property allows developers to control whether the browser handles accelerator keys such as Ctrl+P or F3, etc. + + + The `CoreWebView2Settings.AreBrowserAcceleratorKeysEnabled` API is a convenient setting for developers to disable all the browser accelerator keys together. This setting also sets the default value for the `IsBrowserAcceleratorKeyEnabled` property. + + By default, `CoreWebView2Settings.AreBrowserAcceleratorKeysEnabled` is `TRUE` and `IsBrowserAcceleratorKeyEnabled` is `TRUE`. When developers change `CoreWebView2Settings.AreBrowserAcceleratorKeysEnabled` setting to `FALSE`, this will change default value for `IsBrowserAcceleratorKeyEnabled` to `FALSE`. If developers want specific keys to be handled by the browser after changing the `CoreWebView2Settings.AreBrowserAcceleratorKeysEnabled` setting to `FALSE`, they need to enable these keys by setting `IsBrowserAcceleratorKeyEnabled` to `TRUE`. + + The `CoreWebView2Controller.AcceleratorKeyPressed` event is raised any time an accelerator key is pressed, regardless of whether accelerator keys are enabled or not. + + This API will give the event arg higher priority over the `CoreWebView2Settings.AreBrowserAcceleratorKeysEnabled` setting when we handle the keys. + + With `IsBrowserAcceleratorKeyEnabled` property, if developers mark `IsBrowserAcceleratorKeyEnabled` as `FALSE`, the browser will skip the WebView2 browser feature accelerator key handling process, but the event propagation continues, and web content will receive the key combination. + + This property does not disable accelerator keys related to movement and text editing, such as: + - Home, End, Page Up, and Page Down + - Ctrl-X, Ctrl-C, Ctrl-V + - Ctrl-A for Select All + - Ctrl-Z for Undo + + +
+
diff --git a/bin/Debug/net10.0-windows/Microsoft.Web.WebView2.WinForms.dll b/bin/Debug/net10.0-windows/Microsoft.Web.WebView2.WinForms.dll new file mode 100644 index 0000000..b2d08ad Binary files /dev/null and b/bin/Debug/net10.0-windows/Microsoft.Web.WebView2.WinForms.dll differ diff --git a/bin/Debug/net10.0-windows/Microsoft.Web.WebView2.WinForms.xml b/bin/Debug/net10.0-windows/Microsoft.Web.WebView2.WinForms.xml new file mode 100644 index 0000000..5b005e1 --- /dev/null +++ b/bin/Debug/net10.0-windows/Microsoft.Web.WebView2.WinForms.xml @@ -0,0 +1,504 @@ + + + + Microsoft.Web.WebView2.WinForms + + + + + This class is a bundle of the most common parameters used to create and instances. + Its main purpose is to be set to in order to customize the environment and/or controller used by a during implicit initialization. + + + This class isn't intended to contain all possible environment or controller customization options. + If you need complete control over the environment and/or controller used by a WebView2 control then you'll need to initialize the control explicitly by + creating your own environment (with ) and/or controller options (with ) and passing them to + *before* you set the property to anything. + See the class documentation for an initialization overview. + + + + + Creates a new instance of with default data for all properties. + + + + + Gets or sets the value to pass as the browserExecutableFolder parameter of when creating an environment with this instance. + + + + + Gets or sets the value to pass as the userDataFolder parameter of when creating an environment with this instance. + + + + + Gets or sets the value to use for the Language property of the CoreWebView2EnvironmentOptions parameter passed to when creating an environment with this instance. + + + + + Gets or sets the value to use for the ProfileName property of the CoreWebView2ControllerOptions parameter passed to CreateCoreWebView2ControllerWithOptionsAsync when creating an controller with this instance. + + + + + Gets or sets the value to pass as the AdditionalBrowserArguments parameter of which is passed to when creating an environment with this instance. + + + + + Gets or sets the value to use for the IsInPrivateModeEnabled property of the CoreWebView2ControllerOptions parameter passed to CreateCoreWebView2ControllerWithOptionsAsync when creating an controller with this instance. + + + + + Create a using the current values of this instance's properties. + + A task which will provide the created environment on completion, or null if no environment-related options are set. + + As long as no other properties on this instance are changed, repeated calls to this method will return the same task/environment as earlier calls. + If some other property is changed then the next call to this method will return a different task/environment. + + + + + Creates a using the current values of this instance's properties. + + A object or null if no controller-related properties are set. + Thrown if the parameter environment is null. + + + + Control to embed WebView2 in WinForms. + + + + + Create a new WebView2 WinForms control. + After construction the property is null. + Call to initialize the underlying . + + + This control is effectively a wrapper around the WebView2 COM API, which you can find documentation for here: https://aka.ms/webview2 + You can directly access the underlying ICoreWebView2 interface and all of its functionality by accessing the property. + Some of the most common COM functionality is also accessible directly through wrapper methods/properties/events on the control. + + Upon creation, the control's CoreWebView2 property will be null. + This is because creating the CoreWebView2 is an expensive operation which involves things like launching Edge browser processes. + There are two ways to cause the CoreWebView2 to be created: + 1) Call the method. This is referred to as explicit initialization. + 2) Set the property. This is referred to as implicit initialization. + Either option will start initialization in the background and return back to the caller without waiting for it to finish. + To specify options regarding the initialization process, either pass your own to EnsureCoreWebView2Async or set the control's property prior to initialization. + + When initialization has finished (regardless of how it was triggered) then the following things will occur, in this order: + 1) The control's event will be invoked. If you need to perform one time setup operations on the CoreWebView2 prior to its use then you should do so in a handler for that event. + 2) If a Uri has been set to the property then the control will start navigating to it in the background (i.e. these steps will continue without waiting for the navigation to finish). + 3) The Task returned from will complete. + + For more details about any of the methods/properties/events involved in the initialization process, see its specific documentation. + + Accelerator key presses (e.g. Ctrl+P) that occur within the control will + fire standard key press events such as OnKeyDown. You can suppress the + control's default implementation of an accelerator key press (e.g. + printing, in the case of Ctrl+P) by setting the Handled property of its + EventArgs to true. Also note that the underlying browser process is + blocked while these handlers execute, so: + + + You should avoid doing a lot of work in these handlers. + + + Some of the WebView2 and CoreWebView2 APIs may throw errors if + invoked within these handlers due to being unable to communicate with + the browser process. + + + If you need to do a lot of work and/or invoke WebView2 APIs in response to + accelerator keys then consider kicking off a background task or queuing + the work for later execution on the UI thread. + + + + + Cleans up any resources being used. + + true if managed resources should be disposed; otherwise, false. + + + + Overrides the base OnPaint event to have custom actions + in designer mode + + The graphics devices which is the source + + + + Overrides the base WndProc events to handle specific window messages. + + The Message object containing the HWND window message and parameters + + + + Gets or sets a bag of options which are used during initialization of the control's . + This property cannot be modified (an exception will be thrown) after initialization of the control's CoreWebView2 has started. + + Thrown if initialization of the control's CoreWebView2 has already started. + + + + Explicitly trigger initialization of the control's . + + + A pre-created that should be used to create the . + Creating your own environment gives you control over several options that affect how the is initialized. + If you pass null (the default value) then a default environment will be created and used automatically. + + + A pre-created that should be used to create the . + Creating your own controller options gives you control over several options that affect how the is initialized. + If you pass a controllerOptions to this method then it will override any settings specified on the property. + If you pass null (the default value) and no value has been set to then a default controllerOptions will be created and used automatically. + + + A Task that represents the background initialization process. + When the task completes then the property will be available for use (i.e. non-null). + Note that the control's event will be invoked before the task completes + or on exceptions. + + + Unless previous initialization has already failed, calling this method additional times with the same parameter will have no effect (any specified environment is ignored) and return the same Task as the first call. + Unless previous initialization has already failed, calling this method after initialization has been implicitly triggered by setting the property will have no effect if no environment is given + and simply return a Task representing that initialization already in progress. + Unless previous initialization has already failed, calling this method with a different environment after initialization has begun will result in an . For example, this can happen if you begin initialization + by setting the property and then call this method with a new environment, if you begin initialization with and then call this method with a new + environment, or if you begin initialization with one environment and then call this method with no environment specified. + When this method is called after previous initialization has failed, it will trigger initialization of the control's again. + Note that even though this method is asynchronous and returns a Task, it still must be called on the UI thread like most public functionality of most UI controls. + + The following summarizes the possible error values and a description of why these errors occur. + + + Error Value + Description + + + HRESULT_FROM_WIN32(ERROR_NOT_SUPPORTED) + *\\Edge\\Application* path used in browserExecutableFolder. + + + HRESULT_FROM_WIN32(ERROR_INVALID_STATE) + Specified options do not match the options of the WebViews that are currently running in the shared browser process. + + + HRESULT_FROM_WIN32(ERROR_INVALID_WINDOW_HANDLE) + WebView2 Initialization failed due to an invalid host HWND parentWindow. + + + HRESULT_FROM_WIN32(ERROR_DISK_FULL) + WebView2 Initialization failed due to reaching the maximum number of installed runtime versions. + + + HRESULT_FROM_WIN32(ERROR_PRODUCT_UNINSTALLED + If the Webview depends upon an installed WebView2 Runtime version and it is uninstalled. + + + HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND) + Could not find Edge installation. + + + HRESULT_FROM_WIN32(ERROR_FILE_EXISTS) + User data folder cannot be created because a file with the same name already exists. + + + E_ACCESSDENIED + Unable to create user data folder, Access Denied. + + + E_FAIL + Edge runtime unable to start. + + + + + + Thrown if this method is called with a different environment than when it was initialized. See Remarks for more info. + + + Thrown if this instance of is already disposed, or if the calling thread isn't the thread which created this object (usually the UI thread). See for more info. + May also be thrown if the browser process has crashed unexpectedly and left the control in an invalid state. We are considering throwing a different type of exception for this case in the future. + + + + + Explicitly trigger initialization of the control's . + + + A pre-created that should be used to create the . + Creating your own environment gives you control over several options that affect how the is initialized. + If you pass null then a default environment will be created and used automatically. + + + A Task that represents the background initialization process. + When the task completes then the property will be available for use (i.e. non-null). + Note that the control's event will be invoked before the task completes + or on exceptions. + + + Unless previous initialization has already failed, calling this method additional times with the same parameter will have no effect (any specified environment is ignored) and return the same Task as the first call. + Unless previous initialization has already failed, calling this method after initialization has been implicitly triggered by setting the property will have no effect if no environment is given + and simply return a Task representing that initialization already in progress. + Unless previous initialization has already failed, calling this method with a different environment after initialization has begun will result in an . For example, this can happen if you begin initialization + by setting the property and then call this method with a new environment, if you begin initialization with and then call this method with a new + environment, or if you begin initialization with one environment and then call this method with no environment specified. + When this method is called after previous initialization has failed, it will trigger initialization of the control's again. + Note that even though this method is asynchronous and returns a Task, it still must be called on the UI thread like most public functionality of most UI controls. + + + Thrown if this method is called with a different environment than when it was initialized. See Remarks for more info. + + + Thrown if this instance of is already disposed, or if the calling thread isn't the thread which created this object (usually the UI thread). See for more info. + May also be thrown if the browser process has crashed unexpectedly and left the control in an invalid state. We are considering throwing a different type of exception for this case in the future. + + + + + This is the private function which implements the actual background initialization task. + Cannot be called if the control is already initialized or has been disposed. + + + The environment to use to create the . + If that is null then a default environment is created with and its default parameters. + + + The controllerOptions to use to create the . + If that is null then a default controllerOptions is created with its default parameters. + + A task representing the background initialization process. + All the event handlers added here need to be removed in . + + + + Protected CreateParams property. Used to set custom window styles to the forms HWND. + + + + + Protected VisibilityChanged handler. + + + + + Protected SizeChanged handler. + + + + + Protected Select method: override this to capture tab direction when WebView control is activated + + + + + Protected OnGotFocus handler. + + + + + Protected OnParentChanged handler. + + + + + True if initialization finished successfully and the control is not disposed yet. + + + + + Recursive retrieval of the parent control + + The control to get the parent for + The root parent control + + + + The underlying CoreWebView2. Use this property to perform more operations on the WebView2 content than is exposed + on the WebView2. This value is null until it is initialized and the object itself has undefined behaviour once the control is disposed. + You can force the underlying CoreWebView2 to + initialize via the method. + + Thrown if the calling thread isn't the thread which created this object (usually the UI thread). See for more info. + + + + The zoom factor for the WebView. + + + + + Enable/disable external drop. + + + + + The Source property is the URI of the top level document of the + WebView2. Setting the Source is equivalent to calling . + Setting the Source will trigger initialization of the , if not already initialized. + The default value of Source is null, indicating that the is not yet initialized. + + Specified value is not an absolute . + Specified value is null and the control is initialized. + + + + + Returns true if the webview can navigate to a next page in the + navigation history via the method. + This is equivalent to the . + If the underlying is not yet initialized, this property is false. + + + + + + Returns true if the webview can navigate to a previous page in the + navigation history via the method. + This is equivalent to the . + If the underlying is not yet initialized, this property is false. + + + + + + The default background color for the WebView. + + + + + Executes the provided script in the top level document of the . + This is equivalent to . + + The underlying is not yet initialized. + Thrown when browser process has unexpectedly and left this control in an invalid state. We are considering throwing a different type of exception for this case in the future. + + + + + Reloads the top level document of the . + This is equivalent to . + + The underlying is not yet initialized. + Thrown when browser process has unexpectedly and left this control in an invalid state. We are considering throwing a different type of exception for this case in the future. + + + + + Navigates to the next page in navigation history. + This is equivalent to . + If the underlying is not yet initialized, this method does nothing. + + + + + + Navigates to the previous page in navigation history. + This is equivalent to . + If the underlying is not yet initialized, this method does nothing. + + + + + + Renders the provided HTML as the top level document of the . + This is equivalent to . + + The underlying is not yet initialized. + Thrown when browser process has unexpectedly and left this control in an invalid state. We are considering throwing a different type of exception for this case in the future. + The htmlContent parameter may not be larger than 2 MB (2 * 1024 * 1024 bytes) in total size. The origin of the new page is about:blank. + + + + + Stops any in progress navigation in the . + This is equivalent to . + If the underlying is not yet initialized, this method does nothing. + + + + + + This event is triggered either 1) when the control's has finished being initialized (regardless of how it was triggered or whether it succeeded) but before it is used for anything + OR 2) the initialization failed. + You should handle this event if you need to perform one time setup operations on the CoreWebView2 which you want to affect all of its usages + (e.g. adding event handlers, configuring settings, installing document creation scripts, adding host objects). + + + This sender will be the WebView2 control, whose CoreWebView2 property will now be valid (i.e. non-null) for the first time + if is true. + Unlikely this event can fire second time (after reporting initialization success first) + if the initialization is followed by navigation which fails. + + + + + NavigationStarting dispatches before a new navigate starts for the top + level document of the . + This is equivalent to the event. + + + + + + NavigationCompleted dispatches after a navigate of the top level + document completes rendering either successfully or not. + This is equivalent to the event. + + + + + + WebMessageReceived dispatches after web content sends a message to the + app host via chrome.webview.postMessage. + This is equivalent to the event. + + + + + + SourceChanged dispatches after the property changes. This may happen + during a navigation or if otherwise the script in the page changes the + URI of the document. + This is equivalent to the event. + + + + + + ContentLoading dispatches after a navigation begins to a new URI and the + content of that URI begins to render. + This is equivalent to the event. + + + + + + ZoomFactorChanged dispatches when the property changes. + This is equivalent to the event. + + + + + + Required designer variable. + + + + + Required method for Designer support - do not modify + the contents of this method with the code editor. + + + + diff --git a/bin/Debug/net10.0-windows/Microsoft.Web.WebView2.Wpf.dll b/bin/Debug/net10.0-windows/Microsoft.Web.WebView2.Wpf.dll new file mode 100644 index 0000000..ed79cd9 Binary files /dev/null and b/bin/Debug/net10.0-windows/Microsoft.Web.WebView2.Wpf.dll differ diff --git a/bin/Debug/net10.0-windows/Microsoft.Web.WebView2.Wpf.xml b/bin/Debug/net10.0-windows/Microsoft.Web.WebView2.Wpf.xml new file mode 100644 index 0000000..c6e27b6 --- /dev/null +++ b/bin/Debug/net10.0-windows/Microsoft.Web.WebView2.Wpf.xml @@ -0,0 +1,1932 @@ + + + + Microsoft.Web.WebView2.Wpf + + + + + This class is a bundle of the most common parameters used to create and instances. + Its main purpose is to be set to in order to customize the environment and/or controller used by a during implicit initialization. + It is also a nice WPF integration utility which allows commonly used environment/controller parameters to be dependency properties and be created and used in markup. + + + This class isn't intended to contain all possible environment or controller customization options. + If you need complete control over the environment and/or controller used by a WebView2 control then you'll need to initialize the control explicitly by + creating your own environment (with ) and/or controller options (with ) and passing them to + *before* you set the property to anything. + See the class documentation for an initialization overview. + + + + + Creates a new instance of with default data for all properties. + + + + + The WPF DependencyProperty which backs the property. + + + + + Gets or sets the value to pass as the browserExecutableFolder parameter of when creating an environment with this instance. + + + + + The WPF DependencyProperty which backs the property. + + + + + Gets or sets the value to pass as the userDataFolder parameter of when creating an environment with this instance. + + + + + The WPF DependencyProperty which backs the property. + + + + + Gets or sets the value to use for the Language property of the CoreWebView2EnvironmentOptions parameter passed to when creating an environment with this instance. + + + + + The WPF DependencyProperty which backs the property. + + + + + Gets or sets the value to use for the AdditionalBrowserArguments property of the CoreWebView2EnvironmentOptions parameter passed to when creating an environment with this instance. + + + + + The WPF DependencyProperty which backs the property. + + + + + Gets or sets the value to use for the AreBrowserExtensionsEnabled property of the CoreWebView2EnvironmentOptions parameter passed to when creating an environment with this instance. + + + + + The WPF DependencyProperty which backs the property. + + + + + Gets or sets the value to use for the ProfileName property of the CoreWebView2ControllerOptions parameter passed to CreateCoreWebView2ControllerWithOptionsAsync when creating an controller with this instance. + + + + + The WPF DependencyProperty which backs the property. + + + + + Gets or sets the value to use for the IsInPrivateModeEnabled property of the CoreWebView2ControllerOptions parameter passed to CreateCoreWebView2ControllerWithOptionsAsync when creating an controller with this instance. + + + + + The WPF DependencyProperty which backs the property. + + + + + Gets or sets the value to use for the ScriptLocale property of the CoreWebView2ControllerOptions parameter passed to CreateCoreWebView2ControllerWithOptionsAsync when creating an controller with this instance. + + + + + Create a using the current values of this instance's properties. + + A task which will provide the created environment on completion, or null if no environment-related options are set. + + As long as no other properties on this instance are changed, repeated calls to this method will return the same task/environment as earlier calls. + If some other property is changed then the next call to this method will return a different task/environment. + + + + + Create a using the current values of this instance's properties. + + A object or null if no controller-related properties are set. + Thrown if the parameter environment is null. + + + + This class provides helper methods for working with Direct3D in the WebView2 WPF control. + It includes methods for creating Direct3D9 and Direct3D11 devices, creating textures, + copying resources, and getting shared handles, among others. These methods are used in + the GraphicsItemD3DImage class to interact with Direct3D objects and resources. + + + The class includes PInvoke declarations for calling Direct3D functions from unmanaged code. + It also defines several COM interfaces and structures necessary for interacting with + Direct3D objects. + Note: This class is intended for internal use by the WebView2 WPF control and should not + be used directly by application developers. + + + + + This Class is a capturing the content of the provided (the WebView2 visual). + + + + + Tracks the conditions which block implicit initialization and whether it has been requested or not. + The analogy is a set of gates which are either open (implicit init allowed) or closed (will have to wait). + All sub-gates must be open before implicit init can proceed. + If implicit init is requested while the gate is open then it happens immediately. + If it's requested while the gate is closed then it occurs when the gate becomes open. + + + It should be reasonably straight-forward to expand this class in the future to: + * add new sub-gates to further restrict when implicit initialization can occur + * support storing and invoking multiple actions next time the gate is open instead of only one + + + + + Tracks whether a sub-gate regarding / is open or closed. + This sub-gate is only closed after calls to `BeginInit` and before an equal number of calls to `EndInit`. + + + We don't want implicit initialization to occur in between those calls, + because implicit initialization is a side effect of setting the Source property, + and side effects of setting properties during that period are supposed to be delayed until `EndInit`. + + + + + How many times has been called without being called. + + + + + Tracks whether a sub-gate regarding is open or closed. + This sub-gate is closed if `SynchronizationContext.Current == null`. + + + Initialization won't work without a `SynchronizationContext` because otherwise an `await` might resume on a different thread. + As far as I know so far this only occurs before an event loop as started on the running thread. + Once there's an event loop running the `SynchronizationContext` ensures that `await`s resume in the same event loop (i.e. same thread). + Although it's a rare corner case, it's possible to create a `Window` w/ `WebView2` before an app's event loop starts. + This sub-gate handles that corner case. + + + + + An action which will trigger initialization next time the gate is open (and only once). + + + This basically tracks whether or not implicit initialization has been requested while the gate is closed. + If this is non-null then it should be a delegate that calls . + + + + + Closes the gate until is called an equal number of times. + + + + + Opens the gate closed by after being called the same number of times. + + + + + A handler that should be attached to an event which indicates that exists. + The best one I know of right now is . + When the handler is called, the gate will re-evaluate its state and potentially allow any pending initialization action. + + + + + Run a given action when the gate is open. + + + If the gate is currently open then the action runs immediately. + Otherwise the action runs next time the gate is discovered to be open. + The action is only ever run once; it will not run again a second/subsequent time the gate opens. + If the gate is closed and another action is already pending then the new action *overwrites* the current one (i.e. the currently stored action will never run). + To "forget" a currently stored action, pass `null`. + + Action to run when the gate is open, or null to clear a previously specified action. + + + + Examine our overall open/closed state and run any pending action if appropriate. + + + + + The public interfaces of WebView2 WPF control. + + + + + Gets or sets a bag of options which are used during initialization of the control's . + Setting this property will not work after initialization of the control's has started (the old value will be retained). + See the class documentation for an initialization overview. + + + + + + Accesses the complete functionality of the underlying COM API. + Returns null until initialization has completed. + See the class documentation for an initialization overview. + + + Thrown if the calling thread isn't the thread which created this object (usually the UI thread). See for more info. + May also be thrown if the browser process has crashed unexpectedly and left the control in an invalid state. We are considering throwing a different type of exception for this case in the future. + + Thrown if has already been called on the control. + + + + + + A wrapper around the . + The only difference between this event and is the first parameter that's passed to handlers. + Handlers of this event will receive the control, whereas handlers of will receive the instance. + + + + + + A wrapper around the . + The only difference between this event and is the first parameter that's passed to handlers. + Handlers of this event will receive the control, whereas handlers of will receive the instance. + + + + + + A wrapper around the . + The only difference between this event and is the first parameter that's passed to handlers. + Handlers of this event will receive the control, whereas handlers of will receive the instance. + + + + + + The event is raised when the property changes. + This event directly exposes . + + + + + + + A wrapper around the . + The only difference between this event and is the first parameter that's passed to handlers. + Handlers of this event will receive the control, whereas handlers of will receive the instance. + + + + + + A wrapper around the . + The only difference between this event and is the first parameter that's passed to handlers. + Handlers of this event will receive the control, whereas handlers of will receive the instance. + + + + + + This event is triggered either + 1) when the control's has finished being initialized (regardless of how initialization was triggered) but before it is used for anything, or + 2) if the initialization failed. + You should handle this event if you need to perform one time setup operations on the which you want to affect all of its usages. + (e.g. adding event handlers, configuring settings, installing document creation scripts, adding host objects). + See the class documentation for an initialization overview. + + + This sender will be the control, whose property will now be valid (i.e. non-null) for the first time + if is true. + Unlikely this event can fire second time (after reporting initialization success first) + if the initialization is followed by navigation which fails. + + + + + + Explicitly triggers initialization of the control's . + See the class documentation for an initialization overview. + + + A pre-created that should be used to create the . + Creating your own environment gives you control over several options that affect how the is initialized. + If you pass an environment to this method then it will override any settings specified on the property. + If you pass null (the default value) and no value has been set to then a default environment will be created and used automatically. + + + A pre-created that should be used to create the . + Creating your own controller options gives you control over several options that affect how the is initialized. + If you pass a controllerOptions to this method then it will override any settings specified on the property. + If you pass null (the default value) and no value has been set to then a default controllerOptions will be created and used automatically. + + + A Task that represents the background initialization process. + When the task completes then the property will be available for use (i.e. non-null). + Note that the control's event will be invoked before the task completes. + + + Unless previous initialization has already failed, calling this method additional times with the same parameter will have no effect (any specified environment is ignored) and return the same Task as the first call. + Unless previous initialization has already failed, calling this method after initialization has been implicitly triggered by setting the property will have no effect if no environment is given + and simply return a Task representing that initialization already in progress, unless previous initialization has already failed. + Unless previous initialization has already failed, calling this method with a different environment after initialization has begun will result in an . For example, this can happen if you begin initialization + by setting the property and then call this method with a new environment, if you begin initialization with and then call this method with a new + environment, or if you begin initialization with one environment and then call this method with no environment specified. + When this method is called after previous initialization has failed, it will trigger initialization of the control's again. + Note that even though this method is asynchronous and returns a Task, it still must be called on the UI thread like most public functionality of most UI controls. + + The following summarizes the possible error values and a description of why these errors occur. + + + Error Value + Description + + + HRESULT_FROM_WIN32(ERROR_NOT_SUPPORTED) + *\\Edge\\Application* path used in browserExecutableFolder. + + + HRESULT_FROM_WIN32(ERROR_INVALID_STATE) + Specified options do not match the options of the WebViews that are currently running in the shared browser process. + + + HRESULT_FROM_WIN32(ERROR_INVALID_WINDOW_HANDLE) + WebView2 Initialization failed due to an invalid host HWND parentWindow. + + + HRESULT_FROM_WIN32(ERROR_DISK_FULL) + WebView2 Initialization failed due to reaching the maximum number of installed runtime versions. + + + HRESULT_FROM_WIN32(ERROR_PRODUCT_UNINSTALLED + If the Webview depends upon an installed WebView2 Runtime version and it is uninstalled. + + + HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND) + Could not find Edge installation. + + + HRESULT_FROM_WIN32(ERROR_FILE_EXISTS) + User data folder cannot be created because a file with the same name already exists. + + + E_ACCESSDENIED + Unable to create user data folder, Access Denied. + + + E_FAIL + Edge runtime unable to start. + + + + + + Thrown if this method is called with a different environment than when it was initialized. See Remarks for more info. + + + Thrown if the calling thread isn't the thread which created this object (usually the UI thread). See for more info. + May also be thrown if is null, which probably indicates that the application's event loop hasn't started yet. + May also be thrown if the browser process has crashed unexpectedly and left the control in an invalid state. We are considering throwing a different type of exception for this case in the future. + + Thrown if has already been called on the control. + + + + + + Explicitly triggers initialization of the control's . + See the class documentation for an initialization overview. + + + A pre-created that should be used to create the . + Creating your own environment gives you control over several options that affect how the is initialized. + If you pass an environment to this method then it will override any settings specified on the property. + If you pass null and no value has been set to then a default environment will be created and used automatically. + + + A Task that represents the background initialization process. + When the task completes then the property will be available for use (i.e. non-null). + Note that the control's event will be invoked before the task completes. + + + Unless previous initialization has already failed, calling this method additional times with the same parameter will have no effect (any specified environment is ignored) and return the same Task as the first call. + Unless previous initialization has already failed, calling this method after initialization has been implicitly triggered by setting the property will have no effect if no environment is given + and simply return a Task representing that initialization already in progress, unless previous initialization has already failed. + Unless previous initialization has already failed, calling this method with a different environment after initialization has begun will result in an . For example, this can happen if you begin initialization + by setting the property and then call this method with a new environment, if you begin initialization with and then call this method with a new + environment, or if you begin initialization with one environment and then call this method with no environment specified. + When this method is called after previous initialization has failed, it will trigger initialization of the control's again. + Note that even though this method is asynchronous and returns a Task, it still must be called on the UI thread like most public functionality of most UI controls. + + + Thrown if this method is called with a different environment than when it was initialized. See Remarks for more info. + + + Thrown if the calling thread isn't the thread which created this object (usually the UI thread). See for more info. + May also be thrown if is null, which probably indicates that the application's event loop hasn't started yet. + May also be thrown if the browser process has crashed unexpectedly and left the control in an invalid state. We are considering throwing a different type of exception for this case in the future. + + Thrown if has already been called on the control. + + + + + + Implementation of the ISupportInitialize pattern. + Prevents the control from implicitly initializing its until is called. + Does *not* prevent explicit initialization of the CoreWebView2 (i.e. ). + Mainly intended for use by interactive UI designers. + + + Note that the "Initialize" in ISupportInitialize and the "Init" in BeginInit/EndInit mean + something different and more general than this control's specific concept of initializing + its CoreWebView2 (explicitly or implicitly). This ISupportInitialize pattern is a general + way to set batches of properties on the control to their initial values without triggering + any dependent side effects until all of the values are set (i.e. until EndInit is called). + In the case of this control, a specific side effect to be avoided is triggering implicit + initialization of the CoreWebView2 when setting the Source property. + For example, normally if you set after you've already set Source, + the data set to CreationProperties is ignored because implicit initialization has already started. + However, if you set the two properties (in the same order) in between calls to BeginInit and + EndInit then the implicit initialization of the CoreWebView2 is delayed until EndInit, so the data + set to CreationProperties is still used even though it was set after Source. + + + + + Implementation of the ISupportInitialize pattern. + Invokes any functionality that has been delayed since the corresponding call to . + Mainly intended for use by interactive UI designers. + + + See the documentation of for more information. + + + + + The top-level which the WebView is currently displaying (or will display once initialization of its is finished). + Generally speaking, getting this property is equivalent to getting the property and setting this property (to a different value) is equivalent to calling the method. + + + Getting this property before the has been initialized will retrieve the last Uri which was set to it, or null (the default) if none has been. + Setting this property before the has been initialized will cause initialization to start in the background (if not already in progress), after which the will navigate to the specified . + This property can never be set back to null or to a relative . + See the class documentation for an initialization overview. + + Thrown if has already been called on the control. + Thrown if the property is set to null. + Thrown if the property is set to a relative (i.e. a whose property is false). + + + + + Returns true if the WebView can navigate to a previous page in the navigation history. + Wrapper around the property of . + If isn't initialized yet then returns false. + + + + + + Returns true if the WebView can navigate to a next page in the navigation history. + Wrapper around the property of . + If isn't initialized yet then returns false. + + + + + + The zoom factor for the WebView. + This property directly exposes , see its documentation for more info. + Getting this property before the has been initialized will retrieve the last value which was set to it, or 1.0 (the default) if none has been. + The most recent value set to this property before the CoreWebView2 has been initialized will be set on it after initialization. + + + + + + The default background color for the WebView. + This property directly exposes , see its documentation for more info. + Getting this property before the has been initialized will retrieve the last value which was + set to it, or Color.White (the default) if none has been. + The most recent value set to this property before CoreWebView2Controller has been initialized will be set on it after initialization. + + + + + The foreground color to be used in design mode. + + + + + The AllowExternalDrop property for the WebView. + This property directly exposes , see its documentation for more info. + Getting this property before the has been initialized will retrieve the last value which was + set to it, or true (the default) if none has been. + The most recent value set to this property before CoreWebView2Controller has been initialized will be set on it after initialization. + + + + + Navigates the WebView to the previous page in the navigation history. + Equivalent to calling + If hasn't been initialized yet then does nothing. + + + Thrown if the calling thread isn't the thread which created this object (usually the UI thread). See for more info. + May also be thrown if the browser process has crashed unexpectedly and left the control in an invalid state. We are considering throwing a different type of exception for this case in the future. + + Thrown if has already been called on the control. + + + + + + Navigates the WebView to the next page in the navigation history. + Equivalent to calling . + If hasn't been initialized yet then does nothing. + + + Thrown if the calling thread isn't the thread which created this object (usually the UI thread). See for more info. + May also be thrown if the browser process has crashed unexpectedly and left the control in an invalid state. We are considering throwing a different type of exception for this case in the future. + + Thrown if has already been called on the control. + + + + + + Reloads the current page. + Equivalent to calling . + + + Thrown if hasn't been initialized yet, or if the calling thread isn't the thread which created this object (usually the UI thread). See for more info. + May also be thrown if the browser process has crashed unexpectedly and left the control in an invalid state. We are considering throwing a different type of exception for this case in the future. + + Thrown if has already been called on the control. + + + + + + Stops all navigations and pending resource fetches. + Equivalent to calling . + + + Thrown if hasn't been initialized yet, or if the calling thread isn't the thread which created this object (usually the UI thread). See for more info. + May also be thrown if the browser process has crashed unexpectedly and left the control in an invalid state. We are considering throwing a different type of exception for this case in the future. + + Thrown if has already been called on the control. + + + + + + Initiates a navigation to htmlContent as source HTML of a new document. + Equivalent to calling . + + + Thrown if hasn't been initialized yet, or if the calling thread isn't the thread which created this object (usually the UI thread). See for more info. + May also be thrown if the browser process has crashed unexpectedly and left the control in an invalid state. We are considering throwing a different type of exception for this case in the future. + + Thrown if has already been called on the control. + The htmlContent parameter may not be larger than 2 MB (2 * 1024 * 1024 bytes) in total size. The origin of the new page is about:blank. + + + + + + Executes JavaScript code from the javaScript parameter in the current top level document rendered in the WebView. + Equivalent to calling . + + + Thrown if hasn't been initialized yet, or if the calling thread isn't the thread which created this object (usually the UI thread). See for more info. + May also be thrown if the browser process has crashed unexpectedly and left the control in an invalid state. We are considering throwing a different type of exception for this case in the future. + + Thrown if has already been called on the control. + + + + + + Attempts to set focus to the WebView2 Control. + Equivalent to calling . + Returns true if keyboard focus and logical focus were set to this element; + false if only logical focus was set to this element, or if the call to this method did not force the focus to change. + + + + + Defines internal operations specific to the WebView2 WPF control, separating the control-specific logic + that cannot be shared across different types of controls. + + + + + Initializes the WebView2 controller with operations specific to the control type. + + + + + Unregister controller's handlers specific to the control type. + + + + + A control to embed web content in a WPF application. + + + This control is effectively a wrapper around the [WebView2 COM API](https://aka.ms/webview2). + You can directly access the underlying + ICoreWebView2 interface and all of its functionality by accessing the + property. Some of the most common COM + functionality is also accessible directly through wrapper + methods/properties/events on the control. + + Upon creation, the control's property will be + null. This is because creating the is an + expensive operation which involves things like launching Edge browser + processes. There are two ways to cause the to + be created: + + + Call the method. This is + referred to as explicit initialization. + + + Set the property (which could be done from + markup, for example). This is referred to as implicit initialization. + Either option will start initialization in the background and return + back to the caller without waiting for it to finish. + To specify options regarding the initialization process, either pass + your own to or set the control's property prior to initialization. + + + + When initialization has finished (regardless of how it was triggered or + whether it succeeded) then the following things will occur, in this + order: + + + The control's event + will be invoked. If you need to perform one time setup operations on + the prior to its use then you should + do so in a handler for that event. + + + If initialization was successful and a Uri has been set to the property then the control will start navigating to it in + the background (i.e. these steps will continue without waiting for the + navigation to finish). + + + The Task returned from will + complete. + + + + For more details about any of the methods/properties/events involved in + the initialization process, see its specific documentation. + + Because the control's is a very heavyweight + object (potentially responsible for multiple running processes and + megabytes of disk space) the control implements to provide an explicit means to free it. + Calling will release the + and its underlying resources (except any that are also being used by other + WebViews), and reset to null. After has been called the cannot be + re-initialized, and any attempt to use functionality which requires it + will throw an . + + Accelerator key presses (e.g. Ctrl+P) that occur within the control will + fire standard key press events such as OnKeyDown. You can suppress the + control's default implementation of an accelerator key press (e.g. + printing, in the case of Ctrl+P) by setting the Handled property of its + EventArgs to true. Also note that the underlying browser process is + blocked while these handlers execute, so: + + + You should avoid doing a lot of work in these handlers. + + + Some of the WebView2 and CoreWebView2 APIs may throw errors if + invoked within these handlers due to being unable to communicate with + the browser process. + + + If you need to do a lot of work and/or invoke WebView2 APIs in response to + accelerator keys then consider kicking off a background task or queuing + the work for later execution on the UI thread. + + Note that this control extends in order to embed + windows which live outside of the WPF ecosystem. This has some + implications regarding the control's input and output behavior as well as + the functionality it "inherits" from and . + See the and [WPF/Win32 interop](/dotnet/framework/wpf/advanced/wpf-and-win32-interoperation#hwnds-inside-wpf) + documentation for more information. + + + + + + Creates a new instance of a WebView2 control. + Note that the control's will be null until initialized. + See the class documentation for an initialization overview. + + + + + The WPF which backs the property. + + + + + + + + + This is overridden from and is called to instruct us to create our HWND. + + The HWND that we should use as the parent of the one we create. + The HWND that we created. + + + + + This is overridden from and is called to instruct us to destroy our HWND. + + Our HWND that we need to destroy. + + + + + This is overridden from and is called to provide us with Win32 messages that are sent to our hwnd. + + Window receiving the message (should always match our ). + Indicates the message being received. See Win32 documentation for WM_* constant values. + The "wParam" data being provided with the message. Meaning varies by message. + The "lParam" data being provided with the message. Meaning varies by message. + If true then the message will not be forwarded to any (more) handlers. + Return value varies by message. + + + + + We override the to prevent the focus event from propagating. + We expect the event raised from + + + + + We override the to prevent the focus event from propagating. + We expect the event raised from + + + + + Override for painting to draw + + The tools to handle the drawing via . + + + + + + + + + + + + + + + + + + + + + + This is called by our base class according to the typical implementation of the pattern. + We implement it by releasing all of our underlying COM resources, including our . + + True if a caller is explicitly calling Dispose, false if we're being finalized. + + + + Implementation of the ISupportInitialize pattern. + Prevents the control from implicitly initializing its until is called. + Does *not* prevent explicit initialization of the CoreWebView2 (i.e. ). + Mainly intended for use by interactive UI designers. + + + Note that the "Initialize" in ISupportInitialize and the "Init" in BeginInit/EndInit mean + something different and more general than this control's specific concept of initializing + its CoreWebView2 (explicitly or implicitly). This ISupportInitialize pattern is a general + way to set batches of properties on the control to their initial values without triggering + any dependent side effects until all of the values are set (i.e. until EndInit is called). + In the case of this control, a specific side effect to be avoided is triggering implicit + initialization of the CoreWebView2 when setting the Source property. + For example, normally if you set after you've already set Source, + the data set to CreationProperties is ignored because implicit initialization has already started. + However, if you set the two properties (in the same order) in between calls to BeginInit and + EndInit then the implicit initialization of the CoreWebView2 is delayed until EndInit, so the data + set to CreationProperties is still used even though it was set after Source. + + + + + Implementation of the ISupportInitialize pattern. + Invokes any functionality that has been delayed since the corresponding call to . + Mainly intended for use by interactive UI designers. + + + See the documentation of for more information. + + + + + Changes our controller's ParentWindow to the given HWND, along with any other necessary associated work. + + The new HWND to set as the controller's parent. IntPtr.Zero means that the controller will have no parent and the CoreWebView2 will be hidden. + Whether or not to call as required. Defaults to true. If you pass false then you should call it yourself if required. + + Reparenting the controller isn't necessarily as simple as changing its ParentWindow property, + and this method exists to ensure that any other work that needs to be done at the same time gets done. + The reason that SyncControllerWithParentWindow isn't baked directly into this method is because + sometimes we want to call the Sync functionality without necessarily reparenting (e.g. during initialization). + + + + + Syncs visual/windowing information between the controller and its parent HWND. + This should be called any time a new, non-null HWND is set as the controller's parent, + including when the controller is first created. + + + + + This is overridden from and called when our control's location has changed. + The HwndHost takes care of updating the HWND we created. + What we need to do is move our CoreWebView2 to match the new location. + + + + + The WPF which backs the property. + + + + + + + + + + + + + + + + + The WPF which backs the property. + + + + + + + + The WPF which backs the property. + + + + + + + + This is overridden from and is called to inform us that tabbing has caused the focus to move into our control/window. + Since WPF can't manage the transition of focus to a non-WPF HWND, it delegates the transition to us here. + So our job is just to place the focus in our external HWND. + + Information about how the focus is moving. + true to indicate that we handled the navigation, or false to indicate that we didn't. + + + + This is overridden from and called to allow us to handle key press input. + WPF should never actually call this in response to keyboard events because we're hosting a non-WPF window. + When our window has focus Windows will send the input directly to it rather than to WPF's top-level window and input system. + This override should only be called when we're explicitly forwarding accelerator key input from the CoreWebView2 to WPF (in CoreWebView2Controller_AcceleratorKeyPressed). + Even then, this KeyDownEvent is only triggered because our PreviewKeyDownEvent implementation explicitly triggers it, matching WPF's usual system. + So the process is: + + CoreWebView2Controller_AcceleratorKeyPressed + PreviewKeyDownEvent + KeyDownEvent + OnKeyDown + + . + + + + + See . + + + + + This is the "Preview" (i.e. tunneling) version of , so it actually happens first. + Like OnKeyDown, this will only ever be called if we're explicitly forwarding key presses from the CoreWebView2. + In order to mimic WPF's standard input handling, when we receive this we turn around and fire off the standard bubbling KeyDownEvent. + That way others in the WPF tree see the same standard pair of input events that WPF itself would have triggered if it were handling the key press. + + + + + + See . + + + + + The WPF which backs the property. + + + + + + + + + + + The WPF which backs the property. + + + + + + + + The WPF which backs the property. + + + + + + + + The WPF which backs the property. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + True when we're in design mode and shouldn't create an underlying CoreWebView2. + + + + + The WPF which backs the property. + + + + + + + + + Design mode drawing content. + + + + + + + + + + + + + + + + + This is an event handler for our CoreWebView2's ProcessFailedEvent. + + + + + This is a "gate" which controls whether or not implicit initialization can occur. + If implicit initialization is triggered while the gate is closed, + then the initialization should be delayed until the gate opens. + When we want to trigger implicit initialization we route the call through this gate. + If the gate is open then the initialization will proceed. + If the gate is closed then it will remember to trigger the initialization when it opens. + + + + + Implementation of the ISupportInitialize pattern. + + + + + Implementation of the ISupportInitialize pattern. + + + + + Updates one of our dependency properties to match a new value from the . + It both sets the value and remembers (in _propertyChangingFromCore) that it came from the CoreWebView2 rather than the caller, + allowing the property's "on changed" handler to alter its behavior based on where the new value came from. + It's only intended to be called in a CoreWebView2 event handler that's informing us of a new property value. + It's basically just a wrapper around the inherited SetCurrentValue which also maintains _propertyChangingFromCore. + See the comments on for additional background info. + One more thing worth explicitly stating is that it wraps SetCurrentValue rather than SetValue, + in order to avoid overwriting any OneWay bindings that are set on the specified properties. + Check the link https://stackoverflow.com/q/4230698 for more information about the difference between SetValue and SetCurrentValue. + + The property to change due to an equivalent change in the CoreWebView2. + The new value from the CoreWebView2. + + + + Checks if a given property is currently being updated to match an equivalent change in the . + This method should only be called from a property's "on changed" handler; it has no meaning at any other time. + It is used to determine if the property is changing to match the CoreWebView2 or because the caller set it. + Usually this is used in order to decide if the new value needs to be propagated down to the CoreWebView2. + See the comments on for additional background info. + + The property to check. + True if the property is changing to match the CoreWebView2, or false if the property was changed by the caller. + + + + This is a handler for our base UIElement's IsVisibleChanged event. + It's predictably fired whenever IsVisible changes, and IsVisible reflects the actual current visibility status of the control. + We just need to pass this info through to our CoreWebView2Controller so it can save some effort when the control isn't visible. + + + + + The WPF which backs the property. + + + + + + + + This is a callback that WPF calls to validate a potential new Source value. + + + True if the value is valid, false if it is not. + If we return false then WPF should respond by throwing an . + + + Note that we unfortunately can't treat null as invalid here because null is valid prior to initialization. + + + + + This is a callback that WPF calls when the WPF Source property's value changes. + This might have been triggered by either: + 1) The caller set Source to programmatically trigger a navigation. + 2) The CoreWebView changed its own source and we're just updating the dependency property to match. + We use to distinguish the two cases. + + + + + + + + This is an event handler for our CoreWebView2's SourceChanged event. + Unsurprisingly, it fires when the CoreWebView2's source URI has been changed. + Note that there are two distinct triggers for this: + 1) The CoreWebView2 was told to navigate programmatically (potentially by us, see SourcePropertyChanged). + 2) The user interacted with the CoreWebView2, e.g. clicked a link. + In either of the above cases, this event might trigger several times due to e.g. redirection. + Aside from propagating to our own event, we just need to update our WPF Source property to match the CoreWebView2's. + + + + + + + + This is an event handler for our CoreWebView2's NavigationStarting event. + We just need to propagate the event to WPF. + + + + + + + + This is an event handler for our CoreWebView2's NavigationCompleted event. + We just need to propagate the event to WPF. + + + + + This is an event handler for our CoreWebView2's HistoryChanged event. + We're handling it in order to update our WPF CanGoBack and CanGoForward properties. + + + + + The WPF which backs the property. + + + + + + + + The WPF which backs the property. + + + + + + + + This is an event handler for our CoreWebView2Controller's MoveFocusRequested event. + It fires when the CoreWebView2Controller has focus but wants to move it elsewhere in the app. + E.g. this happens when the user tabs past the last item in the CoreWebView2 and focus needs to return to some other app control. + So our job is just to tell WPF to move the focus on to the next control. + Note that we don't propagate this event outward as a standard WPF routed event because we've implemented its purpose here. + If users of the control want to track focus shifting in/out of the control, they should use standard WPF events. + + + + + This is an event handler for our CoreWebView2Controller's GotFocus event. + We just need to propagate the event to WPF. + + + + + This is an event handler for our CoreWebView2Controller's LostFocus event. + We just need to propagate the event to WPF. + + + + + This is an event handler for our CoreWebView2Controller's AcceleratorKeyPressed event. + This is called to inform us about key presses that are likely to have special behavior (e.g. esc, return, Function keys, letters with modifier keys). + WPF can't detect this input because Windows sends it directly to the Win32 CoreWebView2Controller control. + We implement this by generating standard WPF key input events, allowing callers to handle the input in the usual WPF way if they want. + If nobody handles the WPF key events then we'll allow the default CoreWebView2Controller logic (if any) to handle it. + Of the possible options, this implementation should provide the most flexibility to callers. + + + + + The WPF which backs the property. + + + + + + + + This is a callback that WPF calls when our WPF ZoomFactor property's value changes. + This might have been triggered by either: + 1) The caller set ZoomFactor to change the zoom of the CoreWebView2. + 2) The CoreWebView2 changed its own ZoomFactor and we're just updating the dependency property to match. + We use to distinguish the two cases. + + + + + + + + This is an event handler for our CoreWebView2Controller's ZoomFactorChanged event. + Unsurprisingly, it fires when the CoreWebView2Controller's ZoomFactor has been changed. + Note that there are two distinct triggers for this: + 1) The value was changed programmatically (potentially by us, see ZoomFactorPropertyChanged). + 2) The user interacted with the CoreWebView2, e.g. CTRL + Mouse Wheel. + Aside from propagating to our own event, we just need to update our WPF ZoomFactor property to match the CoreWebView2Controller's. + + + + + The WPF which backs the property. + + + + + + + + This is a callback that WPF calls when our WPF DefaultBackgroundColor property's value changes. + Since CoreWebView2Controller does not update this property itself, this is only triggered by the + caller setting DefaultBackgroundColor. + + + + + The WPF which backs the property. + + + + + + + + This is a callback that WPF calls when our WPF AllowExternalDrop property's value changes. + Since CoreWebView2Controller does not update this property itself, this is only triggered by the + caller setting AllowExternalDrop. + + + + + The WPF which backs the property. + + + + + + + + + + + + + + + + + + + + + + + + + + This is an event handler for our CoreWebView2's ContentLoading event. + We just need to propagate the event to WPF. + + + + + + + + + + + This is an event handler for our CoreWebView2's WebMessageReceived event. + We just need to propagate the event to WPF. + + + + + Moves focus to the CoreWebView2Controller according to the + + + + + This is an event handler for the event. + It is called to inform us when we receive the keyboard focus. + We handle this by passing the keyboard focus on to the underlying . + We never want to land in a state where our control actually has the keyboard focus. + + The control that received keyboard focus. + Arguments from the underlying GotKeyboardFocus event. + + For WebView2 control, it's actually possible for us to receive keyboard focus without this method being called. + One known case where that happens is when our parent window is deactivated while we have focus, then reactivated. + We handle that case in . + + + + + + Implementation of pattern. + Developers should never reach the WebView2Base class here. + + + + + Implementation of the pattern. + Should on be called during m_element's Dispose(). + When this is called, it means all resources releted to the control are disposed and we can safely remove the control from the dictionary. + + + + + Visual hosting version of the WebView2 control. + + + This control is effectively a wrapper around the [WebView2 COM + API](https://aka.ms/webview2). You can directly access the underlying + ICoreWebView2 interface and all of its functionality by accessing the + property. Some of the most common COM + functionality is also accessible directly through wrapper + methods/properties/events on the control. + + Upon creation, the control's property will be + null. This is because creating the is an + expensive operation which involves things like launching Edge browser + processes. There are two ways to cause the to + be created: + + + Call the method. This is + referred to as explicit initialization. + + + Set the property (which could be done from + markup, for example). This is referred to as implicit initialization. + Either option will start initialization in the background and return + back to the caller without waiting for it to finish. + To specify options regarding the initialization process, either pass + your own to or set the control's property prior to initialization. + + + + When initialization has finished (regardless of how it was triggered or + whether it succeeded) then the following things will occur, in this + order: + + + The control's event + will be invoked. If you need to perform one time setup operations on + the prior to its use then you should + do so in a handler for that event. + + + If initialization was successful and a Uri has been set to the property then the control will start navigating to it in + the background (i.e. these steps will continue without waiting for the + navigation to finish). + + + The Task returned from will + complete. + + + + For more details about any of the methods/properties/events involved in + the initialization process, see its specific documentation. + + Because the control's is a very heavyweight + object (potentially responsible for multiple running processes and + megabytes of disk space) the control implements to provide an explicit means to free it. + Calling will release the + and its underlying resources (except any that are also being used by other + WebViews), and reset to null. After has been called the cannot be + re-initialized, and any attempt to use functionality which requires it + will throw an . + + Accelerator key presses (e.g. Ctrl+P) that occur within the control will + fire standard key press events such as OnKeyDown. You can suppress the + control's default implementation of an accelerator key press (e.g. + printing, in the case of Ctrl+P) by setting the Handled property of its + EventArgs to true. Also note that the underlying browser process is + blocked while these handlers execute, so: + + + You should avoid doing a lot of work in these handlers. + + + Some of the WebView2 and CoreWebView2 APIs may throw errors if + invoked within these handlers due to being unable to communicate with + the browser process. + + + If you need to do a lot of work and/or invoke WebView2 APIs in response to + accelerator keys then consider kicking off a background task or queuing + the work for later execution on the UI thread. + + This control extends in order to host the image + displaying WebView's content using template. This has some + implications regarding the control's input and output behavior as well as + the functionality it "inherits" from and . + + The content of is rendered by an . + By default, of WebView2CompositionControl + is set to true. This can prevent the from becoming blurry at certain dimensions, + but it disables anti-aliasing. Set it to false if you want to keep the anti-aliasing. + + Note that the uses a [GraphicsCaptureSession](https://learn.microsoft.com/en-us/uwp/api/windows.graphics.capture.graphicscapturesession) + to capture the screen content from the underlying browser processes. + As such, you may experience lower framerates compared to the standard control, and DRM protected + content will fail to play or display properly. + + + + + + + TemplatePart Name constant for the Image used to represent WebView2. + + + + + Image control uses to display content of WebView2. + + + + + Component used to capture from WebView visual and work as source of Image. + + + + + interface. + + + + + Static constructor for the WebView2CompositionControl class. + + + This static constructor is responsible for overriding the default style key property + for instances of the WebView2CompositionControl class. It sets the metadata to use + the type of the WebView2CompositionControl as the default style key. + See href="https://learn.microsoft.com/en-us/dotnet/api/system.windows.frameworkelement.defaultstylekey?view=netframework-4.8.1"/> + + + + + Creates a new instance of a WebView2Composition control. + Note that the control's will be null until initialized. + See the class documentation for an initialization overview. + + + + + This is an event handler for WPF control's SizeChanged event. + We use CoreWebView2Controller.NotifyParentWindowPositionChanged to notify our browser our + size and relative location has changed. + + + + + This is an event handler for WPF control's LocationChange event. + We use CoreWebView2Controller.NotifyParentWindowPositionChanged to notify our browser our + position has changed. + + + + + Initialize the dispatcher queue. + + + + + This is an event handler for our CoreWebView2CompositionController's CursorChanged event. + We use CursorInteropHelper to Obtain a WPF Cursor from the provided Win32 Handle. + + + + + Send the pointer event to the WebView2 Control. + + + + + + This is an event handler for WPF control's OnTouchDown event. + We use CoreWebView2CompositionController.SendPointerInput to send the touch input to our browser. + + + + + This is an event handler for WPF control's OnTouchMove event. + We use CoreWebView2CompositionController.SendPointerInput to send the touch input to our browser. + + + + + This is an event handler for WPF control's OnTouchUp event. + We use CoreWebView2CompositionController.SendPointerInput to send the touch input to our browser. + + + + + Helper function to get the of the mouse event. + + + + + Send the mouse event to the WebView2 Control. + + + + + + This is an event handler for WPF control's OnMouseMove event. + We use CoreWebView2CompositionController.SendMouseInput to send the mouse input to our browser. + + + + + This is an event handler for WPF control's OnMouseDown event. + We use CoreWebView2CompositionController.SendMouseInput to send the mouse input to our browser. + + + + + This is an event handler for WPF control's OnMouseUp event. + We use CoreWebView2CompositionController.SendMouseInput to send the mouse input to our browser. + + + + + This is an event handler for WPF control's OnMouseWheel event. + We use CoreWebView2CompositionController.SendMouseInput to send the input to our browser. + + + + + This is an event handler for WPF control's OnMouseDoubleClick event. + We use CoreWebView2CompositionController.SendMouseInput to send the input to our browser. + + + + + The WPF which backs the property. + + + + + + + + + Override for painting to draw + + The tools to handle the drawing via . + + + + + + + + + + + + + + + + + + + + + + Implementation of the pattern. + This will release all of our underlying COM resources. + + + + + Implementation of the ISupportInitialize pattern. + Prevents the control from implicitly initializing its until is called. + Does *not* prevent explicit initialization of the CoreWebView2 (i.e. ). + Mainly intended for use by interactive UI designers. + + + Note that the "Initialize" in ISupportInitialize and the "Init" in BeginInit/EndInit mean + something different and more general than this control's specific concept of initializing + its CoreWebView2 (explicitly or implicitly). This ISupportInitialize pattern is a general + way to set batches of properties on the control to their initial values without triggering + any dependent side effects until all of the values are set (i.e. until EndInit is called). + In the case of this control, a specific side effect to be avoided is triggering implicit + initialization of the CoreWebView2 when setting the Source property. + For example, normally if you set after you've already set Source, + the data set to CreationProperties is ignored because implicit initialization has already started. + However, if you set the two properties (in the same order) in between calls to BeginInit and + EndInit then the implicit initialization of the CoreWebView2 is delayed until EndInit, so the data + set to CreationProperties is still used even though it was set after Source. + + + + + Implementation of the ISupportInitialize pattern. + Invokes any functionality that has been delayed since the corresponding call to . + Mainly intended for use by interactive UI designers. + + + See the documentation of for more information. + + + + + The WPF which backs the property. + + + + + + + + + + + + + + + + + The WPF which backs the property. + + + + + + + + The WPF which backs the property. + + + + + + + + WebView2Composition Control only needs IKeyboardInputSink:TabInto to get the direction of tab traversal. + KeyboardInputSite is not implemented by WebView2Composition. + + + + + We override the to prevent the focus event from propagating. + We expect the event raised from + + + + + We override the to prevent the focus event from propagating. + We expect the event raised from + + + + + This is an event handler for our CoreWebView2Controller's GotFocus event. + Used to record whether the control currently has focus. + + + + + This is an event handler for our CoreWebView2Controller's Lost event. + We just need to propagate the event to WPF. + + + + + IKeyboardInputSink:HasFocusWithin interface. + Whether WebView has focus. + + + + + IKeyboardInputSink:OnMnemonic interface. + Not implemented by WebView2. + + + + + IKeyboardInputSink:RegisterKeyboardInputSink interface. + Not implemented by WebView2. + + + + + IKeyboardInputSink:TabInto interface. + + + + + IKeyboardInputSink:TranslateAccelerator interface. + Not implemented by WebView2. + + + + + IKeyboardInputSink:TranslateChar interface. + Not implemented by WebView2. + + + + + This is overridden from and called to allow us to handle key press input. + WPF should never actually call this in response to keyboard events because the focus is on the controller's HWND. + When Controller's HWND has focus, WPF does not know the Controller's HWND belongs to this control, and the key event will not be fired for this control and WPF main window. + This override should only be called when we're explicitly forwarding accelerator key input from the CoreWebView2 to WPF (in CoreWebView2Controller_AcceleratorKeyPressed). + Even then, this KeyDownEvent is only triggered because our PreviewKeyDownEvent implementation explicitly triggers it, matching WPF's usual system. + So the process is: + + CoreWebView2Controller_AcceleratorKeyPressed + PreviewKeyDownEvent + KeyDownEvent + OnKeyDown + + . + + + + + See . + + + + + This is the "Preview" (i.e. tunneling) version of , so it actually happens first. + Like OnKeyDown, this will only ever be called if we're explicitly forwarding key presses from the CoreWebView2. + In order to mimic WPF's standard input handling, when we receive this we turn around and fire off the standard bubbling KeyDownEvent. + That way others in the WPF tree see the same standard pair of input events that WPF itself would have triggered if it were handling the key press. + + + + + + See . + + + + + The WPF which backs the property. + + + + + + + + + + + The WPF which backs the property. + + + + + + + + The WPF which backs the property. + + + + + + + + The WPF which backs the property. + + + + + + + + The WPF which backs the property. + + + + + Gets or sets the divider for the rendering frame rate of the WebViewCompositionControl. + + + The FpsDivider property affects how the rendering frame rate is divided. For example, if the default rendering frame rate of the content is 60 frames + per second (fps), setting the FpsDivider to 2 reduces the frame rate to 30 fps. This property is useful for reducing the rendering load and improving + performance for scenarios where high frame rates are unnecessary. + + + + + This is a callback that WPF calls when our WPF FpsDivider property's value changes. + We implement it by setting the FpsDivider of the GraphicsItemD3DImage. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + True when we're in design mode and shouldn't create an underlying CoreWebView2. + + + + + GeneratedInternalTypeHelper + + + + + CreateInstance + + + + + GetPropertyValue + + + + + SetPropertyValue + + + + + CreateDelegate + + + + + AddEventHandler + + + + diff --git a/bin/Debug/net10.0-windows/Vmianqian.deps.json b/bin/Debug/net10.0-windows/Vmianqian.deps.json index 9bbb65d..2171dde 100644 --- a/bin/Debug/net10.0-windows/Vmianqian.deps.json +++ b/bin/Debug/net10.0-windows/Vmianqian.deps.json @@ -10,7 +10,11 @@ "dependencies": { "AntdUI": "2.3.10", "MailKit": "4.16.0", - "Titanium.Web.Proxy": "3.2.0" + "Microsoft.Web.WebView2": "1.0.2903.40", + "Titanium.Web.Proxy": "3.2.0", + "Microsoft.Web.WebView2.Core": "1.0.2903.40", + "Microsoft.Web.WebView2.WinForms": "1.0.2903.40", + "Microsoft.Web.WebView2.Wpf": "1.0.2903.40" }, "runtime": { "Vmianqian.dll": {} @@ -51,6 +55,25 @@ } } }, + "Microsoft.Web.WebView2/1.0.2903.40": { + "runtimeTargets": { + "runtimes/win-arm64/native/WebView2Loader.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "1.0.2903.40" + }, + "runtimes/win-x64/native/WebView2Loader.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "1.0.2903.40" + }, + "runtimes/win-x86/native/WebView2Loader.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "1.0.2903.40" + } + } + }, "MimeKit/4.16.0": { "dependencies": { "BouncyCastle.Cryptography": "2.6.2" @@ -81,6 +104,30 @@ "fileVersion": "1.0.1.0" } } + }, + "Microsoft.Web.WebView2.Core/1.0.2903.40": { + "runtime": { + "Microsoft.Web.WebView2.Core.dll": { + "assemblyVersion": "1.0.2903.40", + "fileVersion": "1.0.2903.40" + } + } + }, + "Microsoft.Web.WebView2.WinForms/1.0.2903.40": { + "runtime": { + "Microsoft.Web.WebView2.WinForms.dll": { + "assemblyVersion": "1.0.2903.40", + "fileVersion": "1.0.2903.40" + } + } + }, + "Microsoft.Web.WebView2.Wpf/1.0.2903.40": { + "runtime": { + "Microsoft.Web.WebView2.Wpf.dll": { + "assemblyVersion": "1.0.2903.40", + "fileVersion": "1.0.2903.40" + } + } } } }, @@ -118,6 +165,13 @@ "path": "mailkit/4.16.0", "hashPath": "mailkit.4.16.0.nupkg.sha512" }, + "Microsoft.Web.WebView2/1.0.2903.40": { + "type": "package", + "serviceable": true, + "sha512": "sha512-THrzYAnJgE3+cNH+9Epr44XjoZoRELdVpXlWGPs6K9C9G6TqyDfVCeVAR/Er8ljLitIUX5gaSkPsy9wRhD1sgQ==", + "path": "microsoft.web.webview2/1.0.2903.40", + "hashPath": "microsoft.web.webview2.1.0.2903.40.nupkg.sha512" + }, "MimeKit/4.16.0": { "type": "package", "serviceable": true, @@ -138,6 +192,21 @@ "sha512": "sha512-XHchT17Cqr4lX+p4+T4qMPOMfBBvXgIkjy6imy4guNWxLTPKyCaLv/VTiHgk4CwXnXTHlga7KWT1agNCbjwYYg==", "path": "titanium.web.proxy/3.2.0", "hashPath": "titanium.web.proxy.3.2.0.nupkg.sha512" + }, + "Microsoft.Web.WebView2.Core/1.0.2903.40": { + "type": "reference", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Web.WebView2.WinForms/1.0.2903.40": { + "type": "reference", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Web.WebView2.Wpf/1.0.2903.40": { + "type": "reference", + "serviceable": false, + "sha512": "" } } } \ No newline at end of file diff --git a/bin/Debug/net10.0-windows/Vmianqian.dll b/bin/Debug/net10.0-windows/Vmianqian.dll index ba907b0..4851cfb 100644 Binary files a/bin/Debug/net10.0-windows/Vmianqian.dll and b/bin/Debug/net10.0-windows/Vmianqian.dll differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe b/bin/Debug/net10.0-windows/Vmianqian.exe index 4451148..ab4d2ff 100644 Binary files a/bin/Debug/net10.0-windows/Vmianqian.exe and b/bin/Debug/net10.0-windows/Vmianqian.exe differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/AutoLaunchProtocolsComponent/1.0.0.10/manifest.json b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/AutoLaunchProtocolsComponent/1.0.0.10/manifest.json new file mode 100644 index 0000000..e149667 --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/AutoLaunchProtocolsComponent/1.0.0.10/manifest.json @@ -0,0 +1,5 @@ +{ + "description" : "AutoLaunch Protocols Preregistration", + "name" : "Protocol Preregistration", + "version" : "1.0.0.10" +} \ No newline at end of file diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/AutoLaunchProtocolsComponent/1.0.0.10/protocols.json b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/AutoLaunchProtocolsComponent/1.0.0.10/protocols.json new file mode 100644 index 0000000..cd8ac24 --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/AutoLaunchProtocolsComponent/1.0.0.10/protocols.json @@ -0,0 +1,119 @@ +{ + "allow": [ + { + "origins": [ + "https://.get.microsoft.com", + "https://.apps.microsoft.com" + ], + "protocol": "ms-windows-store" + }, + { + "origins": [ + "https://.onedrive.com", + "https://.onedrive.live.com", + "https://sharepoint.com" + ], + "protocol": "ms-word" + }, + { + "origins": [ + "https://[a-z1-9-]*word-edit.officeapps.live.com", + "https://[a-z1-9-]*word-view.officeapps.live.com", + "https://[a-z1-9-]*onenote.officeapps.live.com", + "https://[a-z1-9-]*eap.officeapps.live.com", + "https://[a-z1-9-]*shared.officeapps.live.com", + "https://[a-z1-9-]*afhs.officeapps.live.com", + "https://[a-z1-9-]*vhs.officeapps.live.com", + "https://[a-z1-9-]*optin.online.office.com" + ], + "use_regex": true, + "protocol": "ms-word" + }, + { + "origins": [ + "https://.onedrive.com", + "https://.onedrive.live.com", + "https://sharepoint.com" + ], + "protocol": "ms-excel" + }, + { + "origins": [ + "https://[a-z1-9-]*excel.officeapps.live.com", + "https://[a-z1-9-]*onenote.officeapps.live.com", + "https://[a-z1-9-]*eap.officeapps.live.com", + "https://[a-z1-9-]*shared.officeapps.live.com", + "https://[a-z1-9-]*afhs.officeapps.live.com", + "https://[a-z1-9-]*vhs.officeapps.live.com", + "https://[a-z1-9-]*optin.online.office.com" + ], + "use_regex": true, + "protocol": "ms-excel" + }, + { + "origins": [ + "https://.onedrive.com", + "https://.onedrive.live.com", + "https://sharepoint.com" + ], + "protocol": "ms-powerpoint" + }, + { + "origins": [ + "https://[a-z1-9-]*powerpoint.officeapps.live.com", + "https://[a-z1-9-]*onenote.officeapps.live.com", + "https://[a-z1-9-]*eap.officeapps.live.com", + "https://[a-z1-9-]*shared.officeapps.live.com", + "https://[a-z1-9-]*afhs.officeapps.live.com", + "https://[a-z1-9-]*vhs.officeapps.live.com", + "https://[a-z1-9-]*optin.online.office.com" + ], + "use_regex": true, + "protocol": "ms-powerpoint" + }, + { + "origins": [ + "https://.onedrive.com", + "https://.onedrive.live.com", + "https://sharepoint.com" + ], + "protocol": "ms-visio" + }, + { + "origins": [ + "https://[a-z1-9-]*visio.officeapps.live.com", + "https://[a-z1-9-]*onenote.officeapps.live.com", + "https://[a-z1-9-]*eap.officeapps.live.com", + "https://[a-z1-9-]*shared.officeapps.live.com", + "https://[a-z1-9-]*afhs.officeapps.live.com", + "https://[a-z1-9-]*vhs.officeapps.live.com", + "https://[a-z1-9-]*optin.online.office.com" + ], + "use_regex": true, + "protocol": "ms-visio" + }, + { + "origins": [ + "https://www.microsoft.com", + "https://copilot.microsoft.com" + ], + "protocol": "ms-copilot" + } + ], + "warn": [ + { + "origins": [ + "*" + ], + "protocol": "ms-test-warn" + } + ], + "block": [ + { + "origins": [ + "*" + ], + "protocol": "ms-test-block" + } + ] +} diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/CertificateRevocation/6498.2025.9.4/crl-set b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/CertificateRevocation/6498.2025.9.4/crl-set new file mode 100644 index 0000000..54d6ff9 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/CertificateRevocation/6498.2025.9.4/crl-set differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/CertificateRevocation/6498.2025.9.4/manifest.json b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/CertificateRevocation/6498.2025.9.4/manifest.json new file mode 100644 index 0000000..548f537 --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/CertificateRevocation/6498.2025.9.4/manifest.json @@ -0,0 +1,5 @@ +{ + "description": "Microsoft CRLSet", + "name": "MicrosoftCRLSet", + "version": "6498.2025.9.4" +} diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Crashpad/metadata b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Crashpad/metadata new file mode 100644 index 0000000..e69de29 diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Crashpad/settings.dat b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Crashpad/settings.dat new file mode 100644 index 0000000..5ad1e5c Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Crashpad/settings.dat differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Crashpad/throttle_store.dat b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Crashpad/throttle_store.dat new file mode 100644 index 0000000..9639e1b --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Crashpad/throttle_store.dat @@ -0,0 +1 @@ +level=none expiry=0 diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/AutofillAiModelCache/LOCK b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/AutofillAiModelCache/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/AutofillAiModelCache/LOG b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/AutofillAiModelCache/LOG new file mode 100644 index 0000000..e69de29 diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/AutofillAiModelCache/LOG.old b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/AutofillAiModelCache/LOG.old new file mode 100644 index 0000000..e69de29 diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/AutofillStrikeDatabase/LOCK b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/AutofillStrikeDatabase/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/AutofillStrikeDatabase/LOG b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/AutofillStrikeDatabase/LOG new file mode 100644 index 0000000..e69de29 diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/AutofillStrikeDatabase/LOG.old b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/AutofillStrikeDatabase/LOG.old new file mode 100644 index 0000000..e69de29 diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/BookmarkMergedSurfaceOrdering b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/BookmarkMergedSurfaceOrdering new file mode 100644 index 0000000..2c63c08 --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/BookmarkMergedSurfaceOrdering @@ -0,0 +1,2 @@ +{ +} diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/BrowsingTopicsSiteData b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/BrowsingTopicsSiteData new file mode 100644 index 0000000..c41f9b3 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/BrowsingTopicsSiteData differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/BrowsingTopicsSiteData-journal b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/BrowsingTopicsSiteData-journal new file mode 100644 index 0000000..e69de29 diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/BrowsingTopicsState b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/BrowsingTopicsState new file mode 100644 index 0000000..019afa4 --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/BrowsingTopicsState @@ -0,0 +1,12 @@ +{ + "epochs": [ { + "calculation_time": "13422546810107884", + "config_version": 0, + "model_version": "0", + "padded_top_topics_start_index": 0, + "taxonomy_version": 0, + "top_topics_and_observing_domains": [ ] + } ], + "hex_encoded_hmac_key": "3D20341D26496BECEC5CACADB813B2813BF9F4CB81F7946788CD04BBF5F9787C", + "next_scheduled_calculation_time": "13423151610108124" +} diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/BudgetDatabase/LOCK b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/BudgetDatabase/LOCK new file mode 100644 index 0000000..e69de29 diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/BudgetDatabase/LOG b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/BudgetDatabase/LOG new file mode 100644 index 0000000..e69de29 diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/BudgetDatabase/LOG.old b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/BudgetDatabase/LOG.old new file mode 100644 index 0000000..e69de29 diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/data_0 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/data_0 new file mode 100644 index 0000000..df64fe1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/data_0 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/data_1 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/data_1 new file mode 100644 index 0000000..d95d6f4 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/data_1 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/data_2 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/data_2 new file mode 100644 index 0000000..0815d09 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/data_2 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/data_3 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/data_3 new file mode 100644 index 0000000..ee08a5c Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/data_3 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000002 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000002 new file mode 100644 index 0000000..20f2dc6 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000002 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000003 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000003 new file mode 100644 index 0000000..4348aa6 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000003 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000004 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000004 new file mode 100644 index 0000000..2a5b3d4 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000004 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000005 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000005 new file mode 100644 index 0000000..5023d64 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000005 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000006 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000006 new file mode 100644 index 0000000..759f30a Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000006 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000007 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000007 new file mode 100644 index 0000000..e79be2e Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000007 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000008 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000008 new file mode 100644 index 0000000..c5adff4 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000008 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000009 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000009 new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000009 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00000a b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00000a new file mode 100644 index 0000000..3e48926 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00000a differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00000b b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00000b new file mode 100644 index 0000000..4108b63 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00000b differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00000c b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00000c new file mode 100644 index 0000000..1c6558c Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00000c differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00000d b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00000d new file mode 100644 index 0000000..0f06a82 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00000d differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00000e b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00000e new file mode 100644 index 0000000..4348aa6 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00000e differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00000f b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00000f new file mode 100644 index 0000000..206ea1c Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00000f differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000010 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000010 new file mode 100644 index 0000000..dd282bc Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000010 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000011 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000011 new file mode 100644 index 0000000..97c7ce3 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000011 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000012 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000012 new file mode 100644 index 0000000..135923d Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000012 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000013 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000013 new file mode 100644 index 0000000..c5c8fa0 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000013 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000014 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000014 new file mode 100644 index 0000000..536085d Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000014 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000015 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000015 new file mode 100644 index 0000000..056c47e Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000015 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000017 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000017 new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000017 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000019 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000019 new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000019 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00001b b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00001b new file mode 100644 index 0000000..42f4931 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00001b differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00001c b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00001c new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00001c differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00001e b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00001e new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00001e differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000020 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000020 new file mode 100644 index 0000000..a738509 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000020 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000021 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000021 new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000021 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000023 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000023 new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000023 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000024 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000024 new file mode 100644 index 0000000..aaf093b --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000024 @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000025 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000025 new file mode 100644 index 0000000..c02b3b9 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000025 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000026 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000026 new file mode 100644 index 0000000..86c0089 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000026 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000027 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000027 new file mode 100644 index 0000000..299034f Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000027 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000028 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000028 new file mode 100644 index 0000000..76e244c Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000028 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000029 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000029 new file mode 100644 index 0000000..0721406 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000029 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00002a b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00002a new file mode 100644 index 0000000..57b0497 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00002a differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00002b b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00002b new file mode 100644 index 0000000..0581bd9 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00002b differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00002c b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00002c new file mode 100644 index 0000000..c63316c Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00002c differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00002d b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00002d new file mode 100644 index 0000000..55d3594 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00002d differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00002e b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00002e new file mode 100644 index 0000000..5c257e3 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00002e differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00002f b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00002f new file mode 100644 index 0000000..f0e2e78 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00002f differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000030 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000030 new file mode 100644 index 0000000..2ac99e9 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000030 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000031 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000031 new file mode 100644 index 0000000..29a4d2b Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000031 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000032 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000032 new file mode 100644 index 0000000..e59992a Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000032 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000033 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000033 new file mode 100644 index 0000000..51a5a95 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000033 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000034 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000034 new file mode 100644 index 0000000..bb24bed Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000034 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000035 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000035 new file mode 100644 index 0000000..5ef4ec3 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000035 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000036 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000036 new file mode 100644 index 0000000..59a9287 --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000036 @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000037 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000037 new file mode 100644 index 0000000..3902419 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000037 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000038 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000038 new file mode 100644 index 0000000..3815ebf Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000038 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000039 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000039 new file mode 100644 index 0000000..a4846d2 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000039 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00003a b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00003a new file mode 100644 index 0000000..faf7383 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00003a differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00003b b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00003b new file mode 100644 index 0000000..0b602cd Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00003b differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00003c b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00003c new file mode 100644 index 0000000..3f04fd2 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00003c differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00003d b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00003d new file mode 100644 index 0000000..6ade3b6 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00003d differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00003e b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00003e new file mode 100644 index 0000000..1ee3f84 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00003e differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00003f b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00003f new file mode 100644 index 0000000..c9fd849 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00003f differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000040 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000040 new file mode 100644 index 0000000..8d332ba Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000040 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000041 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000041 new file mode 100644 index 0000000..c16c17f Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000041 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000042 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000042 new file mode 100644 index 0000000..0b602cd Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000042 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000043 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000043 new file mode 100644 index 0000000..faf7383 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000043 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000044 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000044 new file mode 100644 index 0000000..3f04fd2 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000044 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000045 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000045 new file mode 100644 index 0000000..3815ebf Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000045 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000046 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000046 new file mode 100644 index 0000000..3902419 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000046 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000047 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000047 new file mode 100644 index 0000000..8d332ba Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000047 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000048 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000048 new file mode 100644 index 0000000..ce0e40b Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000048 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000049 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000049 new file mode 100644 index 0000000..1213d4f Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000049 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00004a b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00004a new file mode 100644 index 0000000..d046a16 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00004a differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00004b b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00004b new file mode 100644 index 0000000..aecef04 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00004b differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00004c b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00004c new file mode 100644 index 0000000..1696c63 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00004c differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00004d b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00004d new file mode 100644 index 0000000..b32a512 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00004d differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00004e b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00004e new file mode 100644 index 0000000..f79f655 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00004e differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00004f b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00004f new file mode 100644 index 0000000..512dee4 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00004f differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000050 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000050 new file mode 100644 index 0000000..c3d5672 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000050 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000051 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000051 new file mode 100644 index 0000000..71a4348 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000051 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000052 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000052 new file mode 100644 index 0000000..8025694 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000052 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000053 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000053 new file mode 100644 index 0000000..58a0c23 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000053 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000054 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000054 new file mode 100644 index 0000000..f131b85 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000054 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000055 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000055 new file mode 100644 index 0000000..64056c7 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000055 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000056 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000056 new file mode 100644 index 0000000..b8352d6 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000056 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000057 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000057 new file mode 100644 index 0000000..1352a44 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000057 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000058 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000058 new file mode 100644 index 0000000..3203586 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000058 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000059 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000059 new file mode 100644 index 0000000..da8f7f1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000059 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00005a b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00005a new file mode 100644 index 0000000..4135286 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00005a differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00005b b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00005b new file mode 100644 index 0000000..24fc9dd Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00005b differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00005c b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00005c new file mode 100644 index 0000000..49a44b6 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00005c differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00005d b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00005d new file mode 100644 index 0000000..6150354 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00005d differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00005e b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00005e new file mode 100644 index 0000000..a1e2e00 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00005e differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00005f b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00005f new file mode 100644 index 0000000..bfa2a0e Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00005f differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000060 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000060 new file mode 100644 index 0000000..9f12596 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000060 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000061 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000061 new file mode 100644 index 0000000..92c57b0 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000061 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000062 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000062 new file mode 100644 index 0000000..e38afcf Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000062 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000063 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000063 new file mode 100644 index 0000000..452a571 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000063 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000064 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000064 new file mode 100644 index 0000000..236b98c Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000064 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000065 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000065 new file mode 100644 index 0000000..739c0fc Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000065 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000066 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000066 new file mode 100644 index 0000000..653183a Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000066 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000067 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000067 new file mode 100644 index 0000000..8806bcf Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000067 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000068 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000068 new file mode 100644 index 0000000..12115a4 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000068 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000069 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000069 new file mode 100644 index 0000000..596e1ba Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000069 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00006a b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00006a new file mode 100644 index 0000000..acec0a3 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00006a differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00006b b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00006b new file mode 100644 index 0000000..0574d96 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00006b differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00006d b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00006d new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00006d differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00006f b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00006f new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00006f differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000071 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000071 new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000071 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000073 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000073 new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000073 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000074 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000074 new file mode 100644 index 0000000..43b7493 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000074 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000075 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000075 new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000075 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000076 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000076 new file mode 100644 index 0000000..d3b3782 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000076 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000077 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000077 new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000077 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000078 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000078 new file mode 100644 index 0000000..068a7d2 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000078 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000079 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000079 new file mode 100644 index 0000000..1856241 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000079 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00007a b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00007a new file mode 100644 index 0000000..219b4c1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00007a differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00007b b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00007b new file mode 100644 index 0000000..3707764 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00007b differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00007c b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00007c new file mode 100644 index 0000000..852cdfd Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00007c differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00007d b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00007d new file mode 100644 index 0000000..f02a73d Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00007d differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00007e b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00007e new file mode 100644 index 0000000..8e95de1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00007e differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00007f b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00007f new file mode 100644 index 0000000..e3906c4 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00007f differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000080 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000080 new file mode 100644 index 0000000..404a2ea Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000080 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000081 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000081 new file mode 100644 index 0000000..5b6be7c Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000081 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000082 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000082 new file mode 100644 index 0000000..91a5003 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000082 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000083 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000083 new file mode 100644 index 0000000..830dee6 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000083 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000084 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000084 new file mode 100644 index 0000000..9bfbdc1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000084 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000085 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000085 new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000085 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000087 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000087 new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000087 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000089 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000089 new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000089 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00008b b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00008b new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00008b differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00008d b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00008d new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00008d differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00008f b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00008f new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00008f differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000091 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000091 new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000091 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000092 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000092 new file mode 100644 index 0000000..39d8c3e Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000092 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000093 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000093 new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000093 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000095 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000095 new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000095 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000097 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000097 new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000097 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000099 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000099 new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_000099 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00009b b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00009b new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00009b differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00009c b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00009c new file mode 100644 index 0000000..e727a8b Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00009c differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00009e b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00009e new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00009e differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00009f b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00009f new file mode 100644 index 0000000..b296c80 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_00009f differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000a0 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000a0 new file mode 100644 index 0000000..0f06a82 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000a0 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000a1 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000a1 new file mode 100644 index 0000000..873cf90 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000a1 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000a2 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000a2 new file mode 100644 index 0000000..c1173dc Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000a2 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000a3 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000a3 new file mode 100644 index 0000000..c9fb6b2 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000a3 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000a4 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000a4 new file mode 100644 index 0000000..b014388 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000a4 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000a5 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000a5 new file mode 100644 index 0000000..14ee624 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000a5 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000a7 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000a7 new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000a7 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000a8 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000a8 new file mode 100644 index 0000000..0273e88 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000a8 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000aa b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000aa new file mode 100644 index 0000000..5db72a6 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000aa differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000ab b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000ab new file mode 100644 index 0000000..77f42c6 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000ab differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000ad b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000ad new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000ad differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000ae b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000ae new file mode 100644 index 0000000..55e7c93 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000ae differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000b1 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000b1 new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000b1 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000b2 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000b2 new file mode 100644 index 0000000..80dd925 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000b2 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000b5 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000b5 new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000b5 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000b6 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000b6 new file mode 100644 index 0000000..fa92689 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000b6 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000b9 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000b9 new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000b9 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000ba b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000ba new file mode 100644 index 0000000..4445577 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000ba differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000bc b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000bc new file mode 100644 index 0000000..29b13c1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000bc differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000bd b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000bd new file mode 100644 index 0000000..3d33ac1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000bd differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000be b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000be new file mode 100644 index 0000000..4c1c04b Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000be differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000bf b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000bf new file mode 100644 index 0000000..e5ed779 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/f_0000bf differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/index b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/index new file mode 100644 index 0000000..c13f5aa Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/Cache_Data/index differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/No_Vary_Search/journal.baj b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/No_Vary_Search/journal.baj new file mode 100644 index 0000000..3caac6c --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Default/Cache/No_Vary_Search/journal.baj @@ -0,0 +1 @@ +K + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Mu/Other b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Mu/Other new file mode 100644 index 0000000..e089d90 --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Mu/Other @@ -0,0 +1 @@ +other-tracker.msedgedemo.example/ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Mu/Social b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Mu/Social new file mode 100644 index 0000000..c63607b --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Mu/Social @@ -0,0 +1,50 @@ +developers.google.com/ +shareaholic.com/ +facebook.com/ +avatars.yahoo.com/ +clearspring.com/ +facebook.de/ +lockerz.com/ +mybloglog.com/ +fb.com/ +googlemail.com/ +mail.ru/ +webmessenger.yahoo.com/ +pulse.yahoo.com/ +facebook.net/ +addthisedge.com/ +plus.google.com/ +ymail.com/ +digg.com/ +plusone.google.com/ +voice.google.com/ +fbsbx.com/ +linkedin.com/ +list.ru/ +vkontakte.ru/ +rocketmail.com/ +mail.yahoo.com/ +twitter.com/ +sharethis.com/ +stumbleupon.com/ +calendar.yahoo.com/ +addthiscdn.com/ +twitter.jp/ +atdmt.com/ +causes.com/ +facebook.fr/ +edit.yahoo.com/ +stumble-upon.com/ +licdn.com/ +twimg.com/ +userapi.com/ +addthis.com/ +friendfeed.com/ +buzz.yahoo.com/ +gmail.com/ +reddit.com/ +vk.com/ +login.yahoo.com/ +smartlock.google.com/ +my.yahoo.com/ +social-tracker.msedgedemo.example/ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Mu/Staging b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Mu/Staging new file mode 100644 index 0000000..260f6cc --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Mu/Staging @@ -0,0 +1 @@ +staging-tracker.msedgedemo.example/ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Mu/TransparentAdvertisers b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Mu/TransparentAdvertisers new file mode 100644 index 0000000..a383ba3 --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Mu/TransparentAdvertisers @@ -0,0 +1,3 @@ +Contoso^microsoftedgeinsider.com/ +Fabrikam^microsoftedgeinsider.com/ +VanArsdel^microsoftedgeinsider.com/ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/Advertising b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/Advertising new file mode 100644 index 0000000..91b9a6c --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/Advertising @@ -0,0 +1,1285 @@ +ad-delivery.net/ +inpwrd.net/ +soggysponge.com/ +powerfulcopper.com/ +mapbasin.com/ +rhymezebra.com/ +zstats.klevu.com/ +a-mx.com/ +golfcartlaws.com/ +pages02.net/ +iqzone.com/ +strivesquirrel.com/ +meadowlullaby.com/ +pages07.net/ +captivatingcanyon.com/ +warmquiver.com/ +4dex.io/ +brainybasin.com/ +puffyloss.com/ +nebulousquasar.com/ +breakableinsurance.com/ +lessonsnetwork.com/ +goatbillions.com/ +pxf.io/ +ad-alliance.de/ +agreeabletouch.com/ +materialparcel.com/ +adquery.io/ +evasivejar.com/ +ntv.io/ +quietknowledge.com/ +bilingualgeek.com/ +rtactivate.com/ +analyticsdev-eu.cloud.coveo.com/ +ancientact.com/ +clammychicken.com/ +hazmatworkshop.com/ +jewelryforest.com/ +daum.net/ +luminousboulevard.com/ +neighborlywatch.com/ +broadborder.com/ +al-adtech.com/ +techtarget.com/ +vibrantcelebration.com/ +sablesong.com/ +e491328.com/ +fcmatch.google.com/ +scatteredheat.com/ +absentairport.com/ +ufpcdn.com/ +blesspizzas.com/ +fabcharting.com/ +82o9v830.com/ +blushingbeast.com/ +exampleshake.com/ +jubnaadserve.com/ +lumpywood.com/ +repeatsweater.com/ +opecloud.com/ +pages03.net/ +handyfireman.com/ +indextops.com/ +acsbapp.com/ +affilimate.io/ +adimpact.com/ +justpickaname.com/ +xiaoyuanzhao.com/ +btloader.com/ +globo.com/ +vividmeadow.com/ +joincheckmate.com/ +aloofvest.com/ +celestialspectra.com/ +chewy.com/ +bawdybalance.com/ +chocolateplatform.com/ +quirkysugar.com/ +marketspiders.com/ +bagbeam.com/ +askdriver.com/ +zlp6s.pw/ +axon.ai/ +inside-graph.com/ +cavecurtain.com/ +analyzecorona.com/ +breezybright.com/ +permutive.app/ +technical-service.net/ +pjatr.com/ +cartelsalsa.com/ +shesubscriptions.com/ +cityspark.com/ +aliveachiever.com/ +buildingknife.com/ +boatpaper.com/ +route.com/ +moorshoes.com/ +chessbranch.com/ +scatteredstream.com/ +userreport.com/ +cakeagenda.com/ +carvecakes.com/ +rtb.mx/ +aspiringapples.com/ +sp-trk.com/ +shapecomb.com/ +ringsrecord.com/ +cloisteredcurve.com/ +shallowblade.com/ +cratecamera.com/ +franksfloral.com/ +mambasms.com/ +wrongwound.com/ +childlikeform.com/ +confesschairs.com/ +copycarpenter.com/ +screechingstocking.com/ +enchantingtundra.com/ +cutechin.com/ +dartsearch.net/ +enchantingdiscovery.com/ +fudgegenie.com/ +cdn.asksuite.com/ +adentifi.com/ +drainpaste.com/ +tangyamount.com/ +politicalporter.com/ +detectdiscovery.com/ +melodiouschorus.com/ +rainyrule.com/ +righteouscrayon.com/ +shredquiz.com/ +monacobeatles.com/ +pubnation.com/ +copyfranchise.com/ +nordicdataresources.net/ +durchsichtig.xyz/ +energeticladybug.com/ +ballsbanana.com/ +audrte.com/ +eventexistence.com/ +pjtra.com/ +mediavine.com/ +exhibitsneeze.com/ +fewjuice.com/ +driveniq.com/ +jetskiscovers.com/ +enterdrama.com/ +grandfatherguitar.com/ +earthups.com/ +fairiesbranch.com/ +callrail.com/ +trackedlink.net/ +fakedisguise.com/ +personalizer.io/ +sjv.io/ +fallaciousfifth.com/ +boldbars.com/ +newsroom.bi/ +ekonsilio.io/ +unwieldyhealth.com/ +faultycanvas.com/ +badgerabbit.com/ +floweryfact.com/ +fearlessfaucet.com/ +adalyser.com/ +steadfastsound.com/ +ai.trk42.net/ +fuelinspector.com/ +joyouspool.com/ +faucetfoot.com/ +givevacation.com/ +mowgoats.com/ +addictedattention.com/ +extole.io/ +cautiouscherries.com/ +golfersrow.com/ +grocerycrew.com/ +onesignal.com/ +harborcaption.com/ +boiledegglabs.com/ +honorableland.com/ +currentcollar.com/ +snapwidget.com/ +combcompetition.com/ +tinytendency.com/ +informalbook.com/ +bizibly.com/ +innocentlamp.com/ +j93557g.com/ +fancyactivity.com/ +resonantrock.com/ +juicingoasis.com/ +receptivereaction.com/ +sail-personalize.com/ +screechingstove.com/ +voicepins.com/ +loudlunch.com/ +oldfashionedoffer.com/ +hellounbox.com/ +selectivesummer.com/ +nytrng.com/ +wpshsdk.com/ +adxbid.info/ +confiant-integrations.net/ +tpbid.com/ +exdynsrv.com/ +consciouscheese.com/ +meddleplant.com/ +ludicrousarch.com/ +absorbingprison.com/ +meremark.com/ +mooncrustpizza.com/ +sportyforum.com/ +unwieldyimpulse.com/ +vevorstatic.com/ +stingycrush.com/ +nrich.ai/ +muteknife.com/ +ambiguousafternoon.com/ +rakuten.com/ +cautiouscredit.com/ +dockdigestion.com/ +bleachbubble.com/ +rabbitrifle.com/ +obscenesidewalk.com/ +operationchicken.com/ +overconfidentfood.com/ +aulogirefaure.com/ +leadsrx.com/ +visarity.com/ +perfectfetch.com/ +gleamingcow.com/ +placidactivity.com/ +dustydime.com/ +vanarsdel.msedgedemo.example/ +selfishsnake.com/ +cubchannel.com/ +planebasin.com/ +hospitablehall.com/ +pluckyzone.com/ +effervescentcoral.com/ +acidpigs.com/ +pocketfaucet.com/ +flipp.com/ +possiblepencil.com/ +glasscoyote.com/ +lemmatechnologies.com/ +priceypies.com/ +360.cn/ +adsbymediavine.com/ +processplantation.com/ +uuidksinc.net/ +voraciousgrip.com/ +e-volution.ai/ +rebuyengine.com/ +lab.alpineiq.com/ +shakegoldfish.com/ +cdn.tapioni.com/ +materialisticmoon.com/ +spurioussquirrel.com/ +pulsatingmeadow.com/ +modularmental.com/ +quicklyedit.com/ +shop.pe/ +radiateprose.com/ +htplayground.com/ +izooto.com/ +playwire.com/ +skilledview.com/ +animalcoder.com/ +hollowafterthought.com/ +km0trk.com/ +railwayreason.com/ +ad4mat.de/ +worldrealize.com/ +straightnest.com/ +g.lazcdn.com/ +wpncdn.com/ +owlsr.us/ +hsforms.com/ +rangergustav.com/ +burnbubble.com/ +raresummer.com/ +anontimes.com/ +ninthdecimal.com/ +realizerecess.com/ +tamedia.link/ +commandbar.com/ +digiseg.net/ +regularplants.com/ +adsquare.com/ +memorizematch.com/ +quill.run/ +resonantbrush.com/ +restrainstorm.com/ +restructureinvention.com/ +stretchsneeze.com/ +troubleshade.com/ +rollconnection.com/ +ruralrobin.com/ +script.anura.io/ +gorgeousedge.com/ +rusticprice.com/ +salsacartel.com/ +profusesupport.com/ +decisivebase.com/ +resetdigital.co/ +driftingchef.com/ +satisfycork.com/ +trkn.us/ +scaredslip.com/ +flocktory.com/ +mlstatic.com/ +tail.digital/ +spookystitch.com/ +adelement.com/ +hatena.ne.jp/ +fengkongcloud.com/ +warmafterthought.com/ +illumin.com/ +separatesort.com/ +reaktion.com/ +91app.com/ +ubiquitoussea.com/ +websitesdude.com/ +commander1.com/ +shinypond.com/ +recessrain.com/ +adstanding.com/ +shydinosaurs.com/ +ultravalid.com/ +skullmagnets.com/ +heartbreakingmind.com/ +jads.co/ +pages08.net/ +thesolartime.com/ +baitbaseball.com/ +dmxleo.com/ +songsterritory.com/ +gladysway.com/ +prepareplanes.com/ +singroot.com/ +offshoregeology.com/ +fraud0.com/ +upravel.com/ +pixel.anyclip.com/ +sproutingbag.com/ +leadplace.fr/ +popplantation.com/ +stakingbasket.com/ +shakysurprise.com/ +getrockerbox.com/ +stereoproxy.com/ +launchjack.com/ +lunchroomlock.com/ +strangeclocks.com/ +nosto.com/ +strivesidewalk.com/ +aboardamusement.com/ +aidemsrv.com/ +stupendoussnow.com/ +carefuldolls.com/ +gearbubbles.com/ +tranquilveil.com/ +js.securionpay.com/ +mcizas.com/ +afraidlanguage.com/ +hybrid.ai/ +swankysquare.com/ +swingslip.com/ +tackytrains.com/ +digital.flytedesk.com/ +convertkit.com/ +unbecominghall.com/ +smoggysongs.com/ +tendertest.com/ +b2.ai/ +aspiringattempt.com/ +a-ads.com/ +ecal.com/ +urbanlaurel.com/ +salecycle.com/ +gfl85trk.com/ +pleasantpump.com/ +yahoo.net/ +gammaplatform.com/ +ijhyugb.com/ +craftessays.com/ +quixoticnebula.com/ +verdantsculpture.com/ +thomastorch.com/ +adcash.com/ +smartclip.net/ +handsomelythumb.com/ +livelylaugh.com/ +threetruck.com/ +smrtb.com/ +bungeesleeves.com/ +onnetwork.tv/ +tinyswans.com/ +cdn.quadpay.com/ +zadn.vn/ +ritzyrepresentative.com/ +toasttutor.com/ +s.marvellousmachine.net/ +tranquilplume.com/ +dazzlingbook.com/ +tranquilveranda.com/ +verdantlabyrinth.com/ +consumerzero.com/ +adara.com/ +papayads.net/ +redditstatic.com/ +looseloaf.com/ +thrtle.com/ +floors.dev/ +tru.am/ +c88rx.com/ +dotmetrics.net/ +condemnedcomb.com/ +atlassian.com/ +joblessdrum.com/ +presscoder.com/ +static.aviasales.com/ +deliverimp.com/ +attn.tv/ +bizible.com/ +inquisitiveinvention.com/ +agreeablearch.com/ +polarcdn-terrax.com/ +verseballs.com/ +wizardstrategy.com/ +adman.gr/ +adpartner.pro/ +viafoura.co/ +quantumdex.io/ +securedvisit.com/ +losslace.com/ +awarealley.com/ +anymind360.com/ +analytics.fatmedia.io/ +videoplaza.tv/ +spellknight.com/ +nondescriptnote.com/ +abstractedamount.com/ +circlelevel.com/ +chesscolor.com/ +hydraconcept.com/ +analytics.orghipaa.coveo.com/ +beamvolcano.com/ +qualified.com/ +usageanalyticshipaa.coveo.com/ +trustedshops.com/ +browsiprod.com/ +adligature.com/ +mapcommand.com/ +distinctrobin.com/ +getdrip.com/ +ad4m.at/ +mediago.io/ +capitalaudience.com/ +morefriendly.com/ +gemlithium.com/ +hsleadflows.net/ +google.com/pagead/1p-user-list +executeknowledge.com/ +sibautomation.com/ +1dmp.io/ +briskstorm.com/ +scintillatingsilver.com/ +atomex.net/ +samba.tv/ +cubepins.com/ +avct.cloud/ +puppetcorp.com/ +aiactiv.io/ +carloforward.com/ +ebayimg.com/ +travelaudience.com/ +ultraoranges.com/ +clickcertain.com/ +imdb.com/ +stretchsister.com/ +swipechief.com/ +saambaa.com/ +wickedanimal.com/ +adschill.com/ +zipthelake.com/ +euid.eu/ +aniview.com/ +iivt.com/ +fiftyt.com/ +whimsicalcanyon.com/ +acint.net/ +gardenovens.com/ +onef.pro/ +boldapps.net/ +braze.com/ +fixedfold.com/ +bleedlight.com/ +origo.hu/ +vinid.net/ +nativery.com/ +treasuredata.com/ +viralize.tv/ +zeotap.com/ +themangotea.com/ +hadronid.net/ +aliasanvil.com/ +wistia.com/ +wirecomic.com/ +somberscarecrow.com/ +mieru-ca.com/ +netpub.media/ +brainlyads.com/ +bncloudfl.com/ +jpush.cn/ +ads7-adnow.com/ +themepicker.com/ +widespace.com/ +fcmatch.youtube.com/ +popin.cc/ +admixer.net/ +colossusssp.com/ +pages04.net/ +hocgeese.com/ +passivepolo.com/ +g2.com/ +kameleoon.com/ +suggestionbridge.com/ +connectad.io/ +r7.com/ +cintnetworks.com/ +stats.ksearchnet.com/ +kittycatking.com/ +springolive.com/ +intentiq.com/ +dreamdata.cloud/ +adtrafficquality.google/ +stupidscene.com/ +7a75ebcbd7.com/ +glisteningguide.com/ +alpharank.io/ +soresidewalk.com/ +moatpixel.com/ +opmnstr.com/ +analytics-eu.cloud.coveo.com/ +b2c.com/ +seedtag.com/ +seatsmoke.com/ +ktkjmp.com/ +mgid.com/ +lowercases.com/ +combcattle.com/ +compass-fit.jp/ +keenquill.com/ +advangelists.com/ +dv.tech/ +brighttoe.com/ +blings.io/ +breezygrove.com/ +traffic-media.co.uk/ +plotrabbit.com/ +blismedia.com/ +oneplus.com/ +impactradius-event.com/ +polarcdn-pentos.com/ +videoplayerhub.com/ +searchserverapi.com/ +videoamp.com/ +myshopline.com/ +episerver.net/ +outbrainimg.com/ +ssm.codes/ +meatydime.com/ +bfmio.com/ +damageddistance.com/ +oath.com/ +piwik.pro/ +fewkittens.com/ +brandmetrics.com/ +app-us1.com/ +hs-scripts.com/ +adventurousamount.com/ +cloud-media.fr/ +tradelab.fr/ +appboycdn.com/ +medialead.de/ +analytics.webgains.io/ +butterbulb.com/ +fearlesstramp.com/ +rebelhen.com/ +colossalcry.com/ +unaccountablepie.com/ +mrf.io/ +bumlam.com/ +buysellads.net/ +o789thktrk.com/ +vcmdiawe.com/ +libraryvalue.com/ +tiktok.com/ +tiktokv.us/ +6sense.com/ +afterpay.com/ +slackpod.com/ +cabnnr.com/ +leftliquid.com/ +a2z.com/ +uidapi.com/ +cpx.to/ +hbrd.io/ +nostalgicknot.com/ +ccgateway.net/ +t.makehook.ws/ +azuremystique.com/ +profanstee.com/ +solarislabyrinth.com/ +mythad.com/ +trvdp.com/ +clickcease.com/ +ay.delivery/ +sleeknote.com/ +mapixl.com/ +sitewithg.com/ +marketingautomation.services/ +rebid.co/ +metadata.io/ +storyly.io/ +contentexchange.me/ +engineertrick.com/ +rqtrk.eu/ +otm-r.com/ +sddan.com/ +scaredsnakes.com/ +serverbid.com/ +lytics.io/ +yango.com/ +batch.com/ +ivitrack.com/ +ownpage.fr/ +pub.network/ +tp88trk.com/ +insurads.com/ +goldstudies.com/ +cootlogix.com/ +oribi.io/ +pqa-analytics.service.ksearchnet.com/ +simulateswing.com/ +smartjscdn.sindyk.com/ +refinery89.com/ +forevergears.com/ +ascent360.com/ +analytics-au.cloud.coveo.com/ +addtoany.com/ +analytics-ca.cloud.coveo.com/ +stripe.network/ +soretrain.com/ +summerobject.com/ +hospitablehat.com/ +expansioneggnog.com/ +analytics.cloud.coveo.com/ +savoryorange.com/ +orangebirdie.com/ +enviousshape.com/ +adnet.de/ +permutive.com/ +brid.tv/ +convertbox.com/ +nebulousgarden.com/ +boundlessveil.com/ +analytics.orgstg.coveo.com/ +analyticsdev.cloud.coveo.com/ +analyticshipaa.cloud.coveo.com/ +analyticsstg.cloud.coveo.com/ +nextmillmedia.com/ +presage.io/ +inmobicdn.net/ +klaviyo.com/ +51yes.com/ +combbit.com/ +wisepops.net/ +skisofa.com/ +cheqzone.com/ +glotgrx.com/ +serenepebble.com/ +kitewheel.com/ +onsite.joinground.com/ +metrics.psmmarketing.com/ +adtdp.com/ +rhetoricalloss.com/ +neatshade.com/ +matomo.cloud/ +digitaleast.mobi/ +klavyio.klevu.com/ +deliveryjs.com/ +bizrate.com/ +trackonomics.net/ +fpjscdn.net/ +plerdy.com/ +survicate.com/ +regulatesleet.com/ +themoneytizer.com/ +sumo.com/ +getelevar.com/ +sulkycook.com/ +cozytryst.com/ +mutemailbox.com/ +trendemon.com/ +rlets.com/ +tk0x1.com/ +sda.fyi/ +justpremium.com/ +cleanhaircut.com/ +usageanalytics.coveo.com/ +unknownidea.com/ +knottyswing.com/ +blitzcampaigns.com/ +t13.io/ +tracecontent.com/ +unequalbrake.com/ +the-ozone-project.com/ +underdog.media/ +disquscdn.com/ +superawesome.tv/ +uplynk.com/ +knitstamp.com/ +bc0a.com/ +nostalgicneed.com/ +jubilantglimmer.com/ +cdn4dd.com/ +valuecommerce.com/ +impactcdn.com/ +dtscout.com/ +attentivemobile.com/ +dtssrv.com/ +workhorsefunds.com/ +spotim.market/ +kimberlite.io/ +dynata.com/ +lunamedia.live/ +sng.link/ +adlightning.com/ +loadedhearts.com/ +ctctcdn.com/ +ebaystatic.com/ +juiceblocks.com/ +genieesspv.jp/ +nsm-corp.com/ +digocdn.com/ +unmectappic.com/ +glomex.com/ +bluecore.com/ +ambientdusk.com/ +dynamicyield.com/ +selectmedia.asia/ +flux.jp/ +bizweb.dktcdn.net/ +smadex.com/ +stakingsmile.com/ +new-programmatic.com/ +xlivrdr.com/ +realsrv.com/ +ezoic.com/ +cognitivlabs.com/ +versium.com/ +attractionbanana.com/ +doyouad.com/ +ezoic.net/ +sentrymagic.com/ +zestyhorizon.com/ +pages09.net/ +programattik.com/ +truoptik.com/ +tempertrick.com/ +avito.st/ +arcspire.io/ +ezoiccdn.com/ +juicyads.me/ +adcell.de/ +pangle-ads.com/ +pages01.net/ +clearbit.com/ +grow.me/ +stats.klevu.com/ +orbsrv.com/ +five9.com/ +skillfuldrop.com/ +oracleinfinity.io/ +steadfastsystem.com/ +nsaudience.pl/ +scarabresearch.com/ +billowybelief.com/ +annalect.com/ +zeppelinradio.com/ +g2crowd.com/ +temptteam.com/ +intelligentscissors.com/ +chat-content.beanfun.com/ +geistm.com/ +historytrade.com/ +adhese.com/ +merryvault.com/ +blushingbread.com/ +stamped.io/ +mnaspm.com/ +hushly.com/ +geniuslinkcdn.com/ +nullnorth.com/ +trappush.com/ +rokt.com/ +vidazoo.com/ +optad360.io/ +inmobiapis.com/ +trafficfactory.biz/ +classicnotebook.com/ +greasysquare.com/ +opinary.com/ +nebulacrescent.com/ +adalliance.io/ +ansira.com/ +invocacdn.com/ +polarcdn-engine.com/ +intergient.com/ +ebxcdn.com/ +adtng.com/ +shrillspoon.com/ +cdnroute.bpsgameserver.com/ +smarketer.de/ +getshogun.com/ +m167cw.com/ +hextom.com/ +photorank.me/ +motionflowers.com/ +hsadspixel.net/ +manhattan.hintup.io/ +admanmedia.com/ +nappyattack.com/ +geniusmonkey.com/ +clearbitjs.com/ +lasso.link/ +line.me/ +coolguesthouse.com/ +adcell.com/ +eagerknight.com/ +tangibleteam.com/ +hs-banner.com/ +googleadshost.net/ +trafficfactory.com/ +cinemabonus.com/ +gondolagnome.com/ +fqtag.com/ +adnami.io/ +innovid.com/ +fadedsnow.com/ +ojrq.net/ +adtelligent.com/ +liftedknowledge.com/ +alcmpn.com/ +soundstocking.com/ +twik.io/ +analytics.org.coveo.com/ +velvetquasar.com/ +dstillery.com/ +smct.io/ +ebayadservices.com/ +redbasketball.com/ +strpst.com/ +eu-1-id5-sync.com/ +00px.net/ +podium.com/ +mdhv.io/ +smaato.net/ +nitropay.com/ +exuberantedge.com/ +adsmoloco.com/ +taptapnetworks.com/ +subseacare.com/ +zjs.klevu.com/ +geoedge.be/ +adobetarget.com/ +stomachscience.com/ +resonate.com/ +coatfood.com/ +pstatic.net/ +mczbf.com/ +childlikecrowd.com/ +vlitag.com/ +optimallimit.com/ +wknd.ai/ +gimbal.com/ +webvisor.com/ +app.link/ +yellowblue.io/ +adskeeper.co.uk/ +rockstarwriter.com/ +changeablecats.com/ +heyaiii111iidsfsdbfjb132222ffco.xyz/ +steelmaiden.com/ +pluckypocket.com/ +polishedfolly.com/ +soothingglade.com/ +audiencemanager.de/ +cdn.spxl.ink/ +videostep.com/ +24log.com/ +mediawallah.com/ +wistfulwaste.com/ +jubilantwhisper.com/ +tappx.com/ +enigmaticcanyon.com/ +thehotelsnetwork.com/ +reconditerespect.com/ +canvasandsocks.com/ +validate.onecount.net/ +moi-ai.ksearchnet.com/ +ispot.tv/ +quirkybodega.com/ +snapchat.com/ +bigcrunch.com/ +j189eb.com/ +rtmark.net/ +melodiouscomposition.com/ +trackcmp.net/ +microad.net/ +ipv4check.ksearchnet.com/ +satis.fi/ +rerender.jewelml.io/ +jailbulb.com/ +onetag-sys.com/ +moicustomizations.klevu.com/ +stripchat.com/ +adsxtits.com/ +scaredstomach.com/ +absorbingband.com/ +sundaysky.com/ +opti-digital.com/ +heavyplayground.com/ +ltwebstatic.com/ +bedsberry.com/ +dramaticdirection.com/ +trafficjunky.com/ +nextdoor.com/ +config-cdn.ksearchnet.com/ +chimpstatic.com/ +frugalfiestas.com/ +ctnsnet.com/ +hprofits.com/ +dxkulture.com/ +orb.ee/ +vibrantsundown.com/ +stpd.cloud/ +cdn.alevco.de/ +bestofluck.io/ +statsjs.klevu.com/ +indexww.com/ +doubtdrawer.com/ +brand-display.com/ +assets.funraise.io/ +tagtoo.co/ +kochava.com/ +sp-gn.com/ +debonairdust.com/ +krushmedia.com/ +kueezrtb.com/ +getlasso.co/ +opulentsylvan.com/ +leadinfo.net/ +adizio.com/ +spot.im/ +pixel.ad/ +superficialspring.com/ +thepowerstones.com/ +dampdock.com/ +p.yotpo.com/ +listenlayer.com/ +saltsacademy.com/ +pghub.io/ +soundestlink.com/ +gustygrandmother.com/ +espssl.com/ +hsappstatic.net/ +succeedscene.com/ +smoggystation.com/ +uimserv.net/ +privacymanager.io/ +loopme.me/ +shallowart.com/ +scrippsdigital.com/ +publicsofa.com/ +ubembed.com/ +sumome.com/ +powerad.ai/ +cdnsnapwidget.com/ +vic-m.co/ +adsafety.net/ +mrktmtrcs.net/ +gsspat.jp/ +bidpapers.com/ +haplessland.com/ +minutemedia-prebid.com/ +ck-ie.com/ +marketiq.com/ +matheranalytics.com/ +ad-srv.net/ +vividcanopy.com/ +alocdn.com/ +pages06.net/ +smi2.ru/ +yahoo.co.jp/ +adxcel-ec2.com/ +24ttl.stream/ +vocento.com/ +i-mobile.co.jp/ +nightwound.com/ +useinsider.com/ +hepsiburada.net/ +bat.bing.com/ +htlbid.com/ +sendtonews.com/ +buzzoola.com/ +addme.com/ +affec.tv/ +monu.delivery/ +webeyez.com/ +sparkloop.app/ +mrtnsvr.com/ +a.mysalo.store/ +vtex.com.br/ +tncid.app/ +tebex.io/ +newscgp.com/ +incompetentjoke.com/ +refersion.com/ +annoyedairport.com/ +analytics.orgdev.coveo.com/ +concert.io/ +mountain.com/ +rtbhouse.com/ +desirebucket.com/ +stackla.com/ +uol.com.br/ +adleadevent.com/ +retargetly.com/ +quantumlagoon.com/ +smilewanted.com/ +polarcdn.com/ +novaontech.com/ +logly.co.jp/ +rudderlabs.com/ +omnisnippet1.com/ +giftclothings.com/ +honeybulb.com/ +adorableattention.com/ +line-scdn.net/ +popcash.net/ +bidtheatre.com/ +singular.net/ +truculentrate.com/ +flyde.io/ +ladsp.com/ +iqm.com/ +qiota.com/ +en25.com/ +static.affilae.com/ +dmm.co.jp/ +getwarmly.com/ +visx.net/ +othersides.top/ +salesmanago.com/ +viafoura.net/ +parklogic.com/ +klarnaservices.com/ +kameleoon.eu/ +pepperjam.com/ +pntrac.com/ +cdn.luckylabs.io/ +playground.xyz/ +amazon.dev/ +pntrs.com/ +stalesummer.com/ +t.co/ +theweathernetwork.com/ +scribblestring.com/ +kickfire.com/ +npttech.com/ +damagedadvice.com/ +push-ad.com/ +phoenix-widget.com/ +defybrick.com/ +otto.de/ +enhance.co.jp/ +spectacularstamp.com/ +trafficjunky.net/ +revoffers.com/ +reflow.tv/ +ad.gt/ +2trk.info/ +primis.tech/ +clickagy.com/ +shoplineapp.com/ +chargecracker.com/ +mediawallahscript.com/ +p-n.io/ +affiliatly.com/ +adaraanalytics.com/ +gloriousbeef.com/ +quora.com/ +livechatinc.com/ +hellobar.com/ +wunderkind.co/ +evergage.com/ +qwtag.com/ +adinplay.com/ +ipv6check.ksearchnet.com/ +trackad.cz/ +rtbsystem.com/ +smartnews-ads.com/ +permodo.com/ +sdk.fek.pulselive.com/ +rmtag.com/ +sc-static.net/ +piquantgrove.com/ +rentpenny.com/ +laboredlocket.com/ +cometlytrack.com/ +xandr.com/ +sportradarserving.com/ +dreamsdome.com/ +secretturtle.com/ +seel.com/ +revjet.com/ +flodesk.com/ +servenobid.com/ +metricswpsh.com/ +drollwharf.com/ +livelumber.com/ +prmutv.co/ +samplicio.us/ +omappapi.com/ +cephei-b.com/ +privy.com/ +seznam.cz/ +snigelweb.com/ +yads.tech/ +pubwise.io/ +tvsquared.com/ +visually-io.com/ +gammamaximum.com/ +6sc.co/ +seoptiks.com/ +chaturbate.com/ +disturbedquiet.com/ +bandborder.com/ +sail-horizon.com/ +nondescriptcrowd.com/ +datamind.ru/ +teamblue.services/ +mentorsticks.com/ +mc.yandex.md/ +yourlifedream.com/ +kmalgo.com/ +wpadmngr.com/ +calypsocapsule.com/ +enormousearth.com/ +townsquare.media/ +noiselessplough.com/ +rt-pixel.com/ +js7k.com/ +cookieless-data.com/ +da-services.ch/ +grandkingdom.com/ +merequartz.com/ +vrtcal.com/ +precisear.com/ +adskeeper.com/ +advertising-tracker.contoso.example/ +jsrdn.com/ +flux-cdn.com/ +hscollectedforms.net/ +charmingplate.com/ +basis.net/ +stay22.com/ +unbxdapi.com/ +wisepops.com/ +ad2iction.com/ +pristinegale.com/ +score.juicyscore.com/ +salmonfin.com/ +usageanalyticsdev.coveo.com/ +adnxs-simple.com/ +possibleboats.com/ +paleleaf.com/ +invoca.net/ +vdx.tv/ +clarium.io/ +yieldlove-ad-serving.net/ +applyless.com/ +hubapi.com/ +adthrive.com/ +webcontentassessor.com/ +gnezdo.ru/ +fpcdn.io/ +visitor.service.ksearchnet.com/ +stereotypedsugar.com/ +first-id.fr/ +emarsys.net/ +nowaymail.com/ +gsspcln.jp/ +segment.com/ +vidoomy.com/ +hiconversion.com/ +bleacherreport.net/ +webtrends-optimize.com/ +boomtrain.com/ +ortb.net/ +receptivity.io/ +exportdialog.com/ +hurtgrape.com/ +advertising-tracker.msedgedemo.example/ +utarget.ru/ +sape.ru/ +st-n.ads1-adnow.com/ +rezync.com/ +pbstck.com/ +tiresomethunder.com/ +trustedsite.com/ +futuristicframe.com/ +beop.io/ +wavesmachine.com/ +ttarget.ru/ +mktoweb.com/ +impactradius-go.com/ +s-onetag.com/ +adpushup.com/ +beelinks.solutions/ +unloadyourself.com/ +fabrikam.msedgedemo.example/ +socdm.com/ +upsellit.com/ +pricklydebt.com/ +bookmsg.com/ +tsyndicate.com/ +fuseplatform.net/ +ezodn.com/ +unblockia.com/ +trustpilot.com/ +kameleoon.io/ +psychedelicarithmetic.com/ +vpdcp.com/ +vreview.tv/ +zatnoh.com/ +thefishstops.com/ +pntra.com/ +pixfuture.com/ +nmgassets.com/ +fksnk.com/ +a-mo.net/ +micpn.com/ +lazychord.com/ +marketingcloudfx.com/ +open-adsyield.com/ +warumbistdusoarm.space/ +durationmedia.net/ +smile.io/ +behave.com/ +relevant-digital.com/ +naivestatement.com/ +st-n.ads5-adnow.com/ +inconclusiveaction.com/ +stripst.com/ +vntsm.com/ +openxcdn.net/ +images-iherb.com/ +vocstatic.com/ +clientgear.com/ +fixidle.com/ +webvisor.org/ +postaffiliatepro.com/ +truffle.bid/ +yandex.ru/ads +honorfile.com/ +zucks.net/ +tailtarget.com/ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/Analytics b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/Analytics new file mode 100644 index 0000000..6fe125c --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/Analytics @@ -0,0 +1,209 @@ +ipregistry.co/ +z0000g.yvmads.com/ +airship.com/ +pxlclnmdecom-a.akamaihd.net/ +gorgias.chat/ +sentry-cdn.com/ +mmcdn.com/ +aticdn.net/ +contentsquare.net/ +ipinfo.io/ +fpnpmcdn.net/ +d.rageagainstthesoap.com/ +jwpltx.com/ +manuscdn.com/ +datafa.st/ +aswpsdkus.com/ +cloudflareinsights.com/ +clarity.ms/ +b3mxnuvcer.com/ +usemessages.com/ +dnofd.com/ +zoominfo.com/ +clevertap-prod.com/ +civicscience.com/ +helpscout.net/ +zdassets.com/ +yoox.it/ +pubnub.com/ +rtoaster.jp/ +analytics-tracker.msedgedemo.example/ +ubbfpm.com/ +tctm.co/ +hrcdn.net/ +omni-databank.com/ +mentionideablit.com/ +pixel.barion.com/ +ipqualityscore.com/ +zprk.io/ +2522june2024.com/ +clevertap.com/ +convertlanguage.com/ +adobedc.net/ +fndrsp.net/ +driftt.com/ +contents-search-windows.com/ +betrad.com/ +speedcurve.com/ +datadoghq-browser-agent.com/ +tracify.ai/ +cdn.gbqofs.com/ +mpeasylink.com/ +datadoghq.com/ +cdn-net.com/ +monsido.com/ +ttvnw.net/ +curalate.com/ +dbankly.com/ +sentry.io/ +asnapieu.com/ +tagcommander.com/ +lightboxcdn.com/ +kampyle.com/ +dynatrace.com/ +loop11.com/ +dtscdn.com/ +friendshipmale.com/ +media-rockstargames-com.akamaized.net/ +megpxs.com/ +keytiles.com/ +figpii.com/ +trackedweb.net/ +solarwinds.com/ +slickstream.com/ +pagesense.io/ +cohesionapps.com/ +jivosite.com/ +pendo.io/ +ridicdn.net/ +godpvqnszo.com/ +heapanalytics.com/ +tiqcdn.com/ +cquotient.com/ +api.iafstats.com/ +noibu.com/ +riskified.com/ +perfdrive.com/ +instana.io/ +yottaa.net/ +mktoresp.com/ +despegar.com/ +11ctch.com/ +zhihu.com/ +pixel.thoughtmetric.io/ +wideangle.co/ +live.net/ +inrix.com/ +footprintdns.com/ +cdn.getdeviceinf.com/ +blueconic.net/ +requestmetrics.com/ +8ctch.com/ +trustdecision.com/ +thirdwatch.ai/ +medallia.com/ +ipapi.co/ +hsforms.net/ +p.nfltags.com/ +xdiwbc.com/ +images-na.ssl-images-amazon.com/ +piano.io/ +m2911p.com/ +boldchat.com/ +illiweb.com/ +magiceden.dev/ +wt-eu02.net/ +geoip-js.com/ +akstat.io/ +tinypass.com/ +medtargetsystem.com/ +ipify.org/ +turner.com/ +m156b.com/ +onthe.io/ +muscache.com/ +weligillysies.com/ +nwwais.com/ +wholituaten.com/ +cuebiq.com/ +visualstudio.com/ +croomaingly.com/ +bnbstatic.com/ +usbrowserspeed.com/ +mlytics.com/ +visitor-analytics.io/ +livecamcdn.com/ +merchant-center-analytics.goog/ +assets.macysassets.com/ +usabilla.com/ +attraxcdnprod1-freshed3dgayb7c3.z01.azurefd.net/ +mimg.127.net/ +d2lyx5ly60ksu3.cloudfront.net/ +baidu.com/ +nitroscripts.com/ +nocodelytics.com/ +icfcdn.com/ +aamapiv2.com/ +qualtrics.com/ +browser-intake-datadoghq.com/ +kissmetrics.io/ +audioeye.com/ +btttag.com/ +ujet.co/ +wt-safetag.com/ +bitrix.info/ +convertexperiments.com/ +abtasty.com/ +unseenreport.com/ +informer.yandex.ru/ +m314xw.com/ +api.fouanalytics.com/ +sardine.ai/ +yabidos.com/ +quantummetric.com/ +video-cdn.net/ +system-notify.app/ +lpsnmedia.net/ +2514june2024.com/ +roeyecdn.com/ +siteimproveanalytics.io/ +remotejs.com/ +analytics.google.com/ +hotjar.io/ +pdst.fm/ +bdstatic.com/ +swymrelay.com/ +muxanalytics.com/ +batch.com/ +zqtk.net/ +drift.com/ +googleoptimize.com/ +simpleanalyticscdn.com/ +tazeros.com/ +bugsnag.com/ +zi-scripts.com/ +3gl.net/ +siteimproveanalytics.com/ +maggieeatstheangel.com/ +waust.at/ +igodigital.com/ +2467april2024.com/ +p7cloud.net/ +trackjs.com/ +hsprotect.net/ +sattiostiounper.com/ +pingdom.net/ +iocnt.net/ +myfonts.net/ +xfyun.cn/ +amocrm.ru/ +webtrafficsource.com/ +evgnet.com/ +leadfeeder.com/ +nereserv.com/ +openfpcdn.io/ +yottaa.com/ +2495may2024.com/ +videobaba.xyz/ +rdrctgoweb.com/ +datadoghq.eu/ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/Content b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/Content new file mode 100644 index 0000000..a4a048b --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/Content @@ -0,0 +1,348 @@ +rightinbox.com/ +mkt6031.com/ +datadome.co/ +static.cloud.coveo.com/ +funcaptcha.com/ +perimeterx.com/ +kyc.red/ +bra2hmail.com/ +cdn.shopify.com/ +signifyd.com/ +my.mail.ru/ +acsmedia.us/ +media-amazon.com/ +bloximages.newyork1.vip.townnews.com/ +mkt829.com/ +nuance.com/ +cdninstagram.com/ +azure.com/ +customeriomail.com/ +infusionsoft.com/ +jwplatform.com/ +cmail28.com/ +ytimg.com/ +daumcdn.net/ +stripe.com/ +affinity.co/ +paypal.com/ +copper.com/ +linkprotect.cudasvc.com/ +unpkg.com/ +mkt2178.com/ +visme.co/ +geocomply.com/ +cleantalk.org/ +dynamics.com/ +mkt1248.com/ +createsend17.com/ +mkt7832.com/ +revenuegrid.com/ +mailtrack.io/ +mkt8267.com/ +emltrk.com/ +cmail15.com/ +azurefd.net/ +twitch.tv/ +mkt1937.com/ +kakao.com/ +zencdn.net/ +reply.io/ +maillist-manage.in/ +techlab-cdn.com/ +awstrack.me/ +mkt9775.com/ +mkt10008.com/ +hunter.io/ +googlevideo.com/ +createsend16.com/ +px-cloud.net/ +arkoselabs.com/ +mkt7842.com/ +searchspring.io/ +cmail14.com/ +cloudinary.com/ +mkt3536.com/ +mkt9923.com/ +oddschecker.com/ +email-signature-image.com/ +mkt6260.com/ +mkt7883.com/ +createsend30.com/ +shopifyapps.com/ +shopifysvc.com/ +mux.com/ +hubspotemail.net/ +sendgrid.net/ +forwardtomyfriend.com/ +hcaptcha.com/ +o.alicdn.com/ +1-2-1marketing.com/ +createsend27.com/ +judge.me/ +mkt7946.com/ +s3.amazonaws.com/ +sift.com/ +anyclip.com/ +acemlnb.com/ +mkt9026.com/ +platform-eu.cloud.coveo.com/ +cdn.jsdelivr.net/ +aliyuncs.com/ +fundraiseup.com/ +mailfoogae.appspot.com/ +yesware.com/ +salesloft.com/ +cmail18.com/ +propelleremail.co.uk/ +responder.co.il/ +mltrk.io/ +polymail.io/ +createsend9.com/ +outreach.io/ +cmail10.com/ +mkt4644.com/ +mkt7596.com/ +mkt41.net/ +hsms06.com/ +client.protechts.net/ +email81.com/ +ezymarketer.net/ +emlnk1.com/ +checkout.com/ +contactmonkey.com/ +followup.cc/ +createsend13.com/ +cmail27.com/ +notolytix.com/ +soundestlink.com/ +close.io/ +brightcove.net/ +cmail7.com/ +nhlnka.com/ +carrotquest.io/ +createsend10.com/ +elfsight.com/ +maillist-manage.com.au/ +content-tracker.msedgedemo.example/ +mkt7974.com/ +mkt4261.com/ +substack.com/ +constantcontact.com/ +mkt8756.com/ +mkt9430.com/ +list-manage1.com/ +mkt2478.com/ +mkt10663.com/ +s3.us-west-2.amazonaws.com/ +createsend5.com/ +cmail24.com/ +mkt4158.com/ +mandrillapp.com/ +mixmax.com/ +mkt8096.com/ +mkt922.com/ +intercom.io/ +cmail8.com/ +mkt9862.com/ +mkt7752.com/ +lahar.com.br/ +mkt8133.com/ +riskid.security/ +rs6.net/ +mkt6793.com/ +createsend11.com/ +cmail22.com/ +e-mail-servers.com/ +createsend20.com/ +cmail3.com/ +mkt6882.com/ +createsend28.com/ +cmail29.com/ +shop.app/ +createsend26.com/ +gliq.com/ +customer.io/ +cmail4.com/ +jwpsrv.com/ +jwplayer.com/ +mkt8988.com/ +cmail21.com/ +superhuman.com/ +mkt3797.com/ +woowup.com/ +outrch.com/ +persistiq.com/ +cmail19.com/ +icptrack.com/ +mkt8586.com/ +mailerlite.com/ +atomicpark.email/ +cmail30.com/ +shetrk.com/ +cmail13.com/ +captcha-delivery.com/ +org.coveo.com/ +mkt2724.com/ +cmail20.com/ +mkt4424.com/ +campaignmonitor.com/ +bitmovin.com/ +user.com/ +createsend15.com/ +activedemand.com/ +mkt4477.com/ +cirrusinsight.com/ +mkt685.com/ +mkt7971.com/ +mkt9942.com/ +send24.pl/ +mkt6735.com/ +connectif.cloud/ +cmail26.com/ +mkt8062.com/ +wordfly.com/ +maillist-manage.com/ +getblueshift.com/ +accelo.com/ +createsend24.com/ +mkt6264.com/ +mailstat.us/ +airnavradar.com/ +yotpo.com/ +createsend29.com/ +browseranalytic.com/ +mkt1946.com/ +mkt3469.com/ +mkt8064.com/ +nofraud.com/ +mkt81.net/ +salesloftlinks.com/ +geetest.com/ +mkt6917.com/ +mkt9203.com/ +exacttarget.com/ +wp.com/ +bitrix24.com/ +clean.gg/ +mkt8063.com/ +mailtag.io/ +mkt10049.com/ +mkt71.net/ +cmail11.com/ +createsend6.com/ +mkt8007.com/ +cmail6.com/ +createsend25.com/ +mkt9054.com/ +mkt5654.com/ +mkt3838.com/ +mkt4091.com/ +mkt6478.com/ +mkt7783.com/ +cloudflarestream.com/ +mkt6316.com/ +mkt5419.com/ +mkt912.com/ +emailinc.net/ +activehosted.com/ +scene7.com/ +yimg.jp/ +createsend3.com/ +mkt1365.com/ +mkt5657.com/ +maillist-manage.eu/ +yandex.net/ +createsend2.com/ +lassocrm.com/ +acemlnd.com/ +createsend21.com/ +siftscience.com/ +createsend12.com/ +mkt32.net/ +mkt5379.com/ +tradiewebguys.com.au/ +engagebay.com/ +createsend1.com/ +mkt6288.com/ +salesforceiq.com/ +youtube-nocookie.com/ +mkt5297.com/ +mkt5224.com/ +cmail2.com/ +imgix.net/ +createsend19.com/ +qq.com/ +mkt8043.com/ +mkt941.com/ +cmail1.com/ +cloudflare.com/ +agilecrm.com/ +retailrocket.net/ +mkt10781.com/ +createsend8.com/ +paystack.com/ +leadboxer.com/ +mkt61.net/ +mkt8763.com/ +s3-ap-southeast-1.amazonaws.com/ +platform.cloud.coveo.com/ +mkt7234.com/ +mkt4463.com/ +mkt10067.com/ +mkt5906.com/ +cmail16.com/ +autoklose.com/ +frontapp.com/ +exct.net/ +acemlna.com/ +mkt10114.com/ +mkt8628.com/ +moengage.com/ +mkt5514.com/ +sailthru.com/ +confirmsubscription.com/ +cmail25.com/ +mkt8369.com/ +exponea.com/ +jwpcdn.com/ +contentful.com/ +cmail23.com/ +createsend14.com/ +content.powerapps.com/ +mkt8008.com/ +affirm.com/ +cmail17.com/ +vocus.io/ +mkt2685.com/ +createsend7.com/ +cmail9.com/ +createsend18.com/ +aisleahead.com/ +mkt3798.com/ +mailcamp.nl/ +createsend4.com/ +createsend23.com/ +mkt10153.com/ +mkt7580.com/ +createsend22.com/ +cmail5.com/ +mkt8163.com/ +tinyletter.com/ +mkt5566.com/ +mkt5089.com/ +websites.getjusto.com/ +mkt5216.com/ +cmail12.com/ +mkt7972.com/ +mailbutler.io/ +mkt6967.com/ +mkt10039.com/ +buttondown.email/ +simility.com/ +mkt6688.com/ +mkt8345.com/ +px-cdn.net/ +mkt6903.com/ +my-email-signature.link/ +acemlnc.com/ +answerbook.com/ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/Cryptomining b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/Cryptomining new file mode 100644 index 0000000..16d7bae --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/Cryptomining @@ -0,0 +1 @@ +cryptominer.msedgedemo.example/ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/Entities b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/Entities new file mode 100644 index 0000000..29b1697 --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/Entities @@ -0,0 +1,4443 @@ +copper.com^Copper +retargetly.com^Retargetly +mkt685.com^Acoustic +kameleoon.com^Kameleoon +cookiebot.eu^UserCentrics +sda.fyi^sda.fyi +mkt6793.com^Acoustic +mkt5514.com^Acoustic +eu-1-id5-sync.com^ID5 +airbnb.com^Airbnb +91app.com^91App +basingstokegazette.co.uk^Gannett +apollogo.com^Baidu +cratecamera.com^Admiral +mkt61.net^Acoustic +ipapi.co^Kloudend +flodesk.com^Flodesk +omappapi.com^Retyp +vibrantsundown.com^Admiral +bdow.com^BDOW +createsend29.com^CampaignMonitor +tazeros.com^Media Zoom +trk42.net^42Ads +travelaudience.com^Amadeus +businesscentral.mx^Microsoft +mkt829.com^Acoustic +managewp.com^Go Daddy +pinterestinc.com^Pinterest +northnorfolknews.co.uk^Gannett +grow.me^Mediavine +nbcuni-asia.com^Comcast +caller.com^Gannett +mkt41.net^Acoustic +materialparcel.com^Admiral +pages09.net^Acoustic +portclintonnewsherald.com^Gannett +optad360.com^Optad360 +airbnb.be^Airbnb +confirmsubscription.com^CampaignMonitor +dtssrv.com^DTSTechnology +mkt3797.com^Acoustic +awarealley.com^Admiral +datafa.st^DataFast +fadedsnow.com^Admiral +crownpeak.com^Crownpeak +hellounbox.com^Admiral +smaato.net^VerveGroup +starcourier.com^Gannett +a-mo.net^AdaptMX +hs-banner.com^HubSpot +mkt9026.com^Acoustic +rtactivate.com^Semicasting +adsmoloco.com^Moloco +tinyletter.com^Intuit +mastercard.com.pe^Mastercard +sc-static.net^Snap +slackpod.com^Admiral +shein.com^Shein +eventexistence.com^Admiral +thesolartime.com^Admiral +confesschairs.com^Admiral +rhetoricalloss.com^Admiral +bemob.com^BeMob +mkt1937.com^Acoustic +limabean.agency^Limabean +ibcstack.com^ibcstack.com +autotrader.com^CoxEnterprises +snowcorp.com^Naver +taobao.global^AlibabaGroup +aaaacdn.com^Aaaacdn.com +azioningest.net^Azion +chessbranch.com^Admiral +unloadyourself.com^Admiral +aliexpress.com^AlibabaGroup +umeng.com^AlibabaGroup +mkt10114.com^Acoustic +livingstondaily.com^Gannett +braintreeandwithamtimes.co.uk^Gannett +daum.net^Kakao +mkt8133.com^Acoustic +cmail8.com^CampaignMonitor +cityexperiences.com^Hornblower Group +octo.us^IBM +koat.com^Hearst +4dex.io^Adagio +golfersrow.com^Admiral +soggysponge.com^Admiral +vevor.mx^VEVOR +uticaod.com^Gannett +quantumlagoon.com^Admiral +itsspringtime.com^AudioEye +mkt7832.com^Acoustic +agcs.works^AGCS +arcusfi.com^Mastercard +brainpad.co.jp^BrainPad +strivesquirrel.com^Admiral +app.com^Gannett +cici.com^Bytedance +addme.com^Trillion +denver7.com^E.W. Scripps Company +invidi.com^Invidi +insurads.com^InsurAds +romfordrecorder.co.uk^Gannett +mkt10781.com^Acoustic +adsquare.com^Adsquare +jubilantglimmer.com^Admiral +celonis.com^Celonis +2467april2024.com^horonstogly.com +placidactivity.com^Admiral +webtrafficsource.com^webtrafficsource.com +linkagelab.co.kr^Kakao +hillingdontimes.co.uk^Gannett +naver.com^Naver +air.tl^Airbnb +spellknight.com^Admiral +useinsider.com^Insider +mastercard.be^Mastercard +zlp6s.pw^Admiral +blesspizzas.com^Admiral +emlnk1.com^ActiveCampaign +fabercompany.com.vn^Faber Company +mkt9862.com^Acoustic +gw-ec.com^Zaful +accessibe.com^Accessibe +succeedscene.com^Admiral +aliexpress-media.com^AlibabaGroup +cdn-net.com^American Express +adimpact.com^AdImpact +affilimate.io^Affilimate +daraz.com.bd^AlibabaGroup +flux.jp^Flux +line.me^Naver +mkt2685.com^Acoustic +meatydime.com^Admiral +tpbid.com^DigitalTurbine +kivitv.com^E.W. Scripps Company +local-mieruca.com^Faber Company +adslot.com^AdSlot +skullmagnets.com^Admiral +mkt1946.com^Acoustic +protechts.net^HumanSecurity +mux.com^Mux +omni-databank.com^omni-databank.com +email-messaging.com^infobip +hadronid.net^Audigent +honorfile.com^Honor Device +mastercard.co.id^Mastercard +onthe.io^iotechnologies +cloudflare.com^Cloudflare +acoustic.com^Acoustic +arkoselabs.com^ArkoseLabs +cmail18.com^CampaignMonitor +fdbhealth.com^Hearst +sp-trk.com^Spider Labs +mkt9923.com^Acoustic +mkt4424.com^Acoustic +jwpltx.com^JWP Connatix +ridicdn.net^Ridi +careersatdoordash.com^DoorDash +airbnb.se^Airbnb +outbrainimg.com^Outbrain +absorbingprison.com^Admiral +meddleplant.com^Admiral +kcci.com^Hearst +cubchannel.com^Admiral +sfchronicle.com^Hearst +negishim.com^Negishim +dunfermlinepress.com^Gannett +pages06.net^Acoustic +classicnotebook.com^Admiral +aspiringapples.com^Admiral +cyberagent.co.jp^CyberAgent +rtb.mx^AdaptMX +tapioni.com^Adspyglass +superpinkday.com^CHEQ +playstation.com^Sony +frugalfiestas.com^Admiral +ttwstatic.com^Bytedance +bagbeam.com^Admiral +marketspiders.com^Admiral +bedsberry.com^Admiral +cloudflare-quic.com^Cloudflare +iivt.com^PartyPoker +acmbtrc.com^Acumbamail +accelerationpartners.com^Acceleration Partners +createsend22.com^CampaignMonitor +rainyrule.com^Admiral +americanexpress.com.bh^American Express +tricountyindependent.com^Gannett +bannercrowd.com^Bannercrowd +universalkidsresort.com^Comcast +reliancesmartbazaar.com^Reliance +righteouscrayon.com^Admiral +adnow.com^Adnow +grandkingdom.com^Admiral +e.gg^Meta +boatpaper.com^Admiral +lazada.vn^AlibabaGroup +whtimes.co.uk^Gannett +durationmedia.net^DurationMedia +paypal.cl^Paypal +thewestmorlandgazette.co.uk^Gannett +bdstatic.com^Baidu +hoy.es^Vocento +ayradvertiser.com^Gannett +historytrade.com^Admiral +nbcunicareers.com^Comcast +fayobserver.com^Gannett +affilimate.com^Affilimate +trappush.com^Admiral +carefuldolls.com^Admiral +ghoststorygames.com^Take-Two +shapecomb.com^Admiral +hsforms.com^HubSpot +techlab-cdn.com^Akamai +petpeoplemeet.com^Match Group +vpdcp.com^Cimpress +doordash.com^DoorDash +imgix.com^Imgix +wt-eu02.net^Mapp +sulkycook.com^Admiral +kennasecurity.com^Cisco +theleafchronicle.com^Gannett +informa.com^Informa +australiarevival.com^CHEQ +cleanhaircut.com^Admiral +mastercard.com^Mastercard +webfx.com^Web FX +dispatch.com^Gannett +colossalcry.com^Admiral +roku.com^Roku +bc0a.com^BrightEdge +makehook.ws^Celonis +hubapi.com^HubSpot +combcattle.com^Admiral +consciouscheese.com^Admiral +createsend6.com^CampaignMonitor +naverfincorp.com^Naver +chargers.com^NFL +contentstack.com^Contentstack +enchantingtundra.com^Admiral +sawpf.com^GrupoGlobo +wbal.com^Hearst +italianpeoplemeet.com^Match Group +dynamics365.es^Microsoft +cutechin.com^Admiral +savoryorange.com^Admiral +enchantingdiscovery.com^Admiral +breezygrove.com^Admiral +dampdock.com^Admiral +ambiguousafternoon.com^Admiral +tangyamount.com^Admiral +heraldnews.com^Gannett +politicalporter.com^Admiral +fluentco.com^Fluent +intelligentscissors.com^Admiral +telemundo49.com^Comcast +dailycomet.com^Gannett +melodiouschorus.com^Admiral +boldchat.com^Genesys +mkt8008.com^Acoustic +blueridgenow.com^Gannett +briskstorm.com^Admiral +shredquiz.com^Admiral +mtygroup.com^ MTY Food Group +twipla.com^The Website Intelligence Platform +copyfranchise.com^Admiral +transcend.io^Transcend +paypal.jp^Paypal +patriots.com^NFL +durchsichtig.xyz^Klar +staticimg.com^staticimg.com +fitchbohua.cn^Hearst +fabrikam.msedgedemo.example^Fabrikam +mkt8062.com^Acoustic +bawdybalance.com^Admiral +spookystitch.com^Admiral +notolytix.com^Noto +lazadapay.com.my^AlibabaGroup +imedao.com^imedao.com +tao.co^AlibabaGroup +childlikeform.com^Admiral +mastercard.gr^Mastercard +exuberantedge.com^Admiral +dmax.de^Warner Bros. Discovery +betrad.com^Crownpeak +experian.es^Experian +bidpapers.com^Admiral +thenational.scot^Gannett +createsend8.com^CampaignMonitor +revistacrescer.com.br^GrupoGlobo +infobip.com^infobip +merryvault.com^Admiral +heavyplayground.com^Admiral +mkt10008.com^Acoustic +activehosted.com^ActiveCampaign +hotchocolate15k.com^Gannett +mailmktool.com^Acumbamail +mkt8756.com^Acoustic +badgerabbit.com^Admiral +gladysway.com^Admiral +yottaa.net^Yotta +unequalbrake.com^Admiral +software.dev^Atlassian +forevergears.com^Admiral +bigcrunch.com^BigCrunch +kittycatking.com^Admiral +mktoweb.com^Adobe +fuelinspector.com^Admiral +joyouspool.com^Admiral +ai.sony^Sony +audiencerate.com^Audiencerate +gustygrandmother.com^Admiral +looper.com^Static Media +2dehands.be^eBay +gearbubbles.com^Admiral +optad360.io^Optad360 +ipswichstar.co.uk^Gannett +townandcountrymag.com^Hearst +enigmaticcanyon.com^Admiral +glisteningguide.com^Admiral +createsend17.com^CampaignMonitor +cautiouscherries.com^Admiral +greasysquare.com^Admiral +pvd.to^Paved +yandex.az^Yandex +icftechnology.com^ICF Technology +qwtag.com^qwtag +towerdata.com^AtData +activecampaign.com^ActiveCampaign +honorableland.com^Admiral +cloudmedia.fr^CloudMedia +hearstnetworks.com^Hearst +getjusto.com^Justo +inconclusiveaction.com^Admiral +tinytendency.com^Admiral +oxfordmail.co.uk^Gannett +bizibly.com^Adobe +mkt912.com^Acoustic +tb.cn^AlibabaGroup +nheos.com^Naver +band.us^Naver +airbnb.gr^Airbnb +g1combr.co^GrupoGlobo +aiq.com^Alpine IQ +breezybright.com^Admiral +datadoghq-browser-agent.com^DataDog +00px.net^AdxSpace +myplainview.com^Hearst +polishedfolly.com^Admiral +cincinnati.com^Gannett +reconditerespect.com^Admiral +pages08.net^Acoustic +futuristicframe.com^Admiral +contents-search-windows.com^contents-search-windows.com +adligature.com^Advally +oncrm.asia^Novaon Tech +mapcommand.com^Admiral +defybrick.com^CHEQ +aswpsdkus.com^Airship +sawpf.com.br^GrupoGlobo +screechingstove.com^Admiral +hollowafterthought.com^Admiral +acmtrk.com^Acumbamail +libraryvalue.com^Admiral +driftt.com^Salesloft +uimserv.net^UnitedInternet +wickedanimal.com^Admiral +pubfuture-ad.com^PubFuture +nbcsportsbayarea.com^Comcast +livelumber.com^Admiral +loadedhearts.com^Admiral +scatteredstream.com^Admiral +snow.me^Naver +brightcove.net^Brightcove +cmail20.com^CampaignMonitor +absentairport.com^Admiral +ludicrousarch.com^Admiral +classificadosautoesporte.com.br^GrupoGlobo +airbnb.com.au^Airbnb +thefishstops.com^Admiral +lumpywood.com^Admiral +frame.io^Adobe +progress-index.com^Gannett +cityspark.com^CitySpark +dazzlingbook.com^Admiral +createsend27.com^CampaignMonitor +ecreativeworks.com^EcreativeWorks +mastercard.kz^Mastercard +pocketcasts.com^Automattic +materialisticmoon.com^Admiral +romwe.com^Shein +sprinklr.com^Sprinklr +betsson.com^BML Group +trackcmp.net^ActiveCampaign +createsend16.com^CampaignMonitor +cpx.to^Captify +moengage.com^MoEngage +createsend14.com^CampaignMonitor +redhillandreigatelife.co.uk^Gannett +zeotap.com^Zeotap +recordnet.com^Gannett +soretrain.com^Admiral +antifraudjs.friends2follow.com^Friends2Follow +innervate.com^Innervate +8d8.biz^8d8.biz +trckacbm.com^Acumbamail +pypl.com^Paypal +d1z3r0i09bwium.cloudfront.net^d1z3r0i09bwium.cloudfront.net +stpd.cloud^Setupad +agreeablearch.com^Admiral +cinemabonus.com^Admiral +attentive.com^Attentive +componentcontrol.com^Hearst +illiweb.com^illiweb.com +burlingtoncountytimes.com^Gannett +mkt3838.com^Acoustic +glomex.com^Glomex +lazychord.com^Admiral +technical-service.net^AdAlliance +alipay.com.cn^AlibabaGroup +inside-graph.com^Powerfront +littlepeoplemeet.com^Match Group +mkt8063.com^Acoustic +saffronwaldenreporter.co.uk^Gannett +mkt8163.com^Acoustic +nondescriptcrowd.com^Admiral +mastercard.by^Mastercard +42ads.io^42Ads +onetrust.com^OneTrust +innocentlamp.com^Admiral +hb-studios.com^Take-Two +nbcdfw.com^Comcast +latinopeoplemeet.com^Match Group +obscenesidewalk.com^Admiral +ballsbanana.com^Admiral +azuremystique.com^Admiral +adsxtits.com^adsxtits.com +longreads.com^Automattic +overconfidentfood.com^Admiral +atlassian.com^Atlassian +newstimes.com^Hearst +mkt3536.com^Acoustic +tsyndicate.com^TrafficStars +acidpigs.com^Admiral +designedforsurface.com^Microsoft +thrivecart.com^ThriveCart +popplantation.com^Admiral +ncloud.com^Naver +myfonts.com^MyFonts +acemlnb.com^ActiveCampaign +liveramp.co.jp^LiveRamp +360.cn^360.cn +glasscoyote.com^Admiral +cinezap.com^comScore +bloxdigital.com^BLOX Digital +airpackapp.com^airpackapp.com +falmouthpacket.co.uk^Gannett +processplantation.com^Admiral +ofgreencolumn.com^CHEQ +xiaoyuanzhao.com^Shixiseng +profanstee.com^Admiral +searchspring.com^B7Interactive +comcastadvertising.com^Comcast +aliyuncs.com^AlibabaGroup +oath.com^Yahoo! +mkt7974.com^Acoustic +timesonline.com^Gannett +psychedelicarithmetic.com^Admiral +photorank.me^SocialNative +swankysquare.com^Admiral +publicsofa.com^Admiral +adpushup.com^Zelto +hellobar.com^HelloBar +puffyloss.com^Admiral +wimbledonguardian.co.uk^Gannett +quicklyedit.com^Admiral +keenquill.com^Admiral +oort.io^Cisco +petoskeynews.com^Gannett +bandzoogle.com^Bandzoogle +customer.io^CustomerIO +wptv.com^E.W. Scripps Company +ancientact.com^Admiral +radiateprose.com^Admiral +spiddefrexpron.com^spiddefrexpron.com +thedenverchannel.com^E.W. Scripps Company +bucyrustelegraphforum.com^Gannett +straightnest.com^Admiral +xfinity.com^Comcast +decolar.com^Prosus +sailplay.ru^Sailplay +flipkart.com^Flipkart +paypal.co^Paypal +anontimes.com^Admiral +acemlnc.com^ActiveCampaign +dustydime.com^Admiral +exportdialog.com^Admiral +fraud0.com^Fraud0 +rrstar.com^Gannett +mkt6967.com^Acoustic +theintelligencefund.com^Mastercard +vevor.com^VEVOR +rs6.net^ConstantContact +despegar.com.ni^Prosus +newsshopper.co.uk^Gannett +gov-ncloud.com^Naver +izooto.com^iZooto +wolt.com^DoorDash +ramper.com.br^Ramper +front.com^Front +duosecurity.com^Cisco +jubnaadserve.com^DIGIMENA +autopilotapp.com^AutoPilot +baitbaseball.com^Admiral +siteimprove.com^SiteImprove +arizona58.com^E.W. Scripps Company +postmarkapp.com^Postmark +mkt5657.com^Acoustic +mdcs.rs^Microsoft +nosto.com^Nosto +mastercard.fr^Mastercard +separatesort.com^Admiral +haplessland.com^Admiral +sturgisjournal.com^Gannett +paypal-support.com^Paypal +websitesdude.com^Admiral +gammamaximum.com^Admiral +paypal.ca^Paypal +lmtonline.com^Hearst +experian.co.za^Experian +lura.app^Akta +healthroundprince.com^CHEQ +binance.vision^Binance +mrf.io^Marfeel +harrowtimes.co.uk^Gannett +metabora.io^Kakao +chargecracker.com^Admiral +solarislabyrinth.com^Admiral +shop.app^Shopify +kakaoilaas.com^Kakao +airbnb.nl^Airbnb +mobsuite.com^MobSuite +prepareplanes.com^Admiral +seseasky.com^CHEQ +24ttl.net^24TTL +soresidewalk.com^Admiral +anymind360.com^Anymind Group +soundstocking.com^Admiral +vingroup.net^Vingroup +sonyopeninhawaii.com^Sony +one-count.com^GCN Publishing +wavesmachine.com^Admiral +kakaoent.com^Kakao +springolive.com^Admiral +getblueshift.com^BlueShift +brainlabsdigital.com^Brainlabs +ad4mat.de^AdvancedStore +mobilelegends.com^Bytedance +mkt8096.com^Acoustic +mkt6735.com^Acoustic +accelo.com^Accelo +nbcnews.com^Comcast +the-daily-record.com^Gannett +r7.com^Grupo Record +stereoproxy.com^Admiral +burnbubble.com^Admiral +hocgeese.com^Admiral +smartcaptcha.yandexcloud.net^Yandex +groundtruth.com^GroundTruth +givevacation.com^Admiral +despegar.com.co^Prosus +stereotypedsugar.com^Admiral +verdantsculpture.com^Admiral +mentorsticks.com^Admiral +therecordherald.com^Gannett +chaturbate.com^Chaturbate +rezync.com^ZetaGlobal +alibabacorp.com^AlibabaGroup +mkt5216.com^Acoustic +recessrain.com^Admiral +1-2-1marketing.com^121Marketing +cartelsalsa.com^Admiral +debonairdust.com^Admiral +michiganrobotflower.com^CHEQ +4dem.it^4dem +blueconic.net^BlueConic +syfy.com^Comcast +stupidscene.com^Admiral +bilingualgeek.com^Admiral +gumtree.pl^eBay +redditinc.com^reddit +billowybelief.com^Admiral +joblessdrum.com^Admiral +baincapital.com^BainCapital +moneydigest.com^Static Media +unity.com^Unity +kueezrtb.com^Kueez +globoesporte.com^GrupoGlobo +polymail.io^Polymail +readylogistics.com^CoxEnterprises +24ttl.stream^24TTL +revoffers.com^Katalys +pekintimes.com^Gannett +tangibleteam.com^Admiral +pressconnects.com^Gannett +dynamics365businesscentral.co.za^Microsoft +unbecominghall.com^Admiral +ultravalid.com^Admiral +temptteam.com^Admiral +smoggysongs.com^Admiral +aspiringattempt.com^Admiral +passivepolo.com^Admiral +swingslip.com^Admiral +rentingcoches.com^Vocento +daraz.pk^AlibabaGroup +pleasantpump.com^Admiral +themangotea.com^Admiral +genieesspv.jp^GENIEE +craftessays.com^Admiral +da-services.ch^TXGroup +admanmedia.com^AdmanMedia +h2os.com^OnePlus +themepicker.com^Admiral +airnavradar.com^AirNav Radar +wizardstrategy.com^Admiral +paypal.com.sg^Paypal +marshfieldnewsherald.com^Gannett +usatoday.com^Gannett +quirkysugar.com^Admiral +telemundosanantonio.com^Comcast +dz7188oz6lnyb.cloudfront.net^dz7188oz6lnyb.cloudfront.net +mastercard.am^Mastercard +adorableattention.com^Admiral +answermedia.com^AnswerMedia +paypal-donations.com^Paypal +daily-jeff.com^Gannett +zadn.vn^Adtima +cortanaskills.com^Microsoft +ritzyrepresentative.com^Admiral +northsomersettimes.co.uk^Gannett +isstarsbuilding.com^CHEQ +butterbulb.com^Admiral +threads.com^Meta +tranquilplume.com^Admiral +tranquilveranda.com^Admiral +pluckypocket.com^Admiral +mkt10039.com^Acoustic +azionedge.com^Azion +nickiswift.com^Static Media +truculentrate.com^Admiral +ultraoranges.com^Admiral +hornblowercorp.com^Hornblower Group +foodrepublic.com^Static Media +inquisitiveinvention.com^Admiral +hearstmagazines.com^Hearst +neworleanssaints.com^NFL +lazada.com.hk^AlibabaGroup +bilibili.com^Bilibili +shelbystar.com^Gannett +jacksonville.com^Gannett +gondolagnome.com^Admiral +vibrantcelebration.com^Admiral +whimsicalcanyon.com^Admiral +serenepebble.com^Admiral +prismlive.com^Naver +snigel.com^Snigel +uidapi.com^The Trade Desk +tebex.io^Overwolf +zestyhorizon.com^Admiral +creative.sky^Comcast +admixer.com^AdmixerEU +engagebay.com^EngageBay +mktoresp.com^Adobe +seventeen.com^Hearst +constantcontact.com^ConstantContact +paypal-marketing.pl^Paypal +shydinosaurs.com^Admiral +nbcuni.co.jp^Comcast +bizible.com^Adobe +southcoasttoday.com^Gannett +mads.co.jp^MicroAd +adskeeper.com^AdsKeeper +elleshop.jp^Hearst +adskeeper.co.uk^AdsKeeper +polen.com.br^Polen +dingtalk.com^AlibabaGroup +adstanding.com^Adstanding +combbit.com^Admiral +honeybulb.com^Admiral +expansioneggnog.com^Admiral +bravotv.com^Comcast +cozytryst.com^Admiral +6sense.com^6sense +adrima.vn^Adtima +peeblesshirenews.com^Gannett +mastercard.se^Mastercard +advally.com^Advally +ad4m.at^AdvancedStore +mediago.io^Baidu +m314xw.com^MCW Consulting +didomi.io^Didomi +afterpay.com^AfterPay +agilemeasure.com^AgileMeasure +fosters.com^Gannett +unwieldyhealth.com^Admiral +tracecontent.com^Admiral +experian.co.uk^Experian +aiactiv.io^Ai ACTIV +muteknife.com^Admiral +airbnb.ca^Airbnb +stretchsister.com^Admiral +engagingnetworks.app^EngagingNetworks +copycarpenter.com^Admiral +createsend3.com^CampaignMonitor +airbnb.cn^Airbnb +medtargetsystem.com^medtargetsystem.com +mastercard.com.au^Mastercard +airbnb.fr^Airbnb +airbnb.is^Airbnb +ionmystery.com^E.W. Scripps Company +digitalturbine.com^DigitalTurbine +aloofvest.com^Admiral +theadvertiser.com^Gannett +airbnb.mx^Airbnb +mkt7883.com^Acoustic +civicscience.com^Civic Science +losslace.com^Admiral +airbnb.no^Airbnb +brainybasin.com^Admiral +quixoticnebula.com^Admiral +sevenrooms.com^DoorDash +wirecomic.com^Admiral +createsend28.com^CampaignMonitor +alibabagroup.com^AlibabaGroup +postdirekt.de^Deutsche Post DHL +asnapieu.com^Airship +fixedfold.com^Admiral +curalate.com^Bazaarvoice +akamaistatus.com^Akamai +pingdom.net^SolarWinds +telemundo52.com^Comcast +linode.com^Akamai +agilecrm.com^AgileCRM +contentsquare.com^ContentSquare +mooncrustpizza.com^Admiral +stripchat.com^Stripchat +smoggystation.com^Admiral +gruv.com^Comcast +bbpeoplemeet.com^Match Group +pxlclnmdecom-a.akamaihd.net^Akamai +skem1.com^Campaigner +alevco.de^Alevco +quietknowledge.com^Admiral +despegar.com.bo^Prosus +medallia.ca^Medallia +alibaba-inc.com^AlibabaGroup +24log.com^24Log +exct.net^Salesforce +macysassets.com^Macy's +cloudinary.com^Cloudinary +liftedknowledge.com^Admiral +realsrv.com^ExoClick +enhance.co.jp^MicroAd +alicdn.com^AlibabaGroup +chron.com^Hearst +mediawallah.com^Mediawallah +hprofits.com^HProfits +aliexpress-service.com^AlibabaGroup +pinterestlabs.com^Pinterest +redhat.com^IBM +aliexpress-tech-open.com^AlibabaGroup +vcentertainment.com^Take-Two +semseoymas.com^Sem, Seo and More Online Marketing +monroenews.com^Gannett +getdrip.com^Redbrick +2514june2024.com^horonstogly.com +cheqzone.com^CHEQ +hospitablehat.com^Admiral +alipay.hk^AlibabaGroup +experian.com.pe^Experian +paypal-businesscenter.com^Paypal +nostalgicneed.com^Admiral +fox17online.com^E.W. Scripps Company +daraz.com^AlibabaGroup +outdoorguide.com^Static Media +dtscout.com^DTSTechnology +mastercard.pt^Mastercard +engagingnetworks.net^EngagingNetworks +orangebirdie.com^Admiral +sony-olympus-medical.com^Sony +ojrq.net^Impact +assineoglobo.com.br^GrupoGlobo +stamped.io^Stamped +launchjack.com^Admiral +hearst.nl^Hearst +lazada.com.my^AlibabaGroup +lazada.com.ph^AlibabaGroup +wpbf.com^Hearst +dealertrack.com^CoxEnterprises +llportal.in.th^AlibabaGroup +oneplus.in^OnePlus +secretturtle.com^Admiral +mczbf.com^PublicisGroupe +shetrk.com^SalesHandy +regularplants.com^Admiral +lazadapay.co.th^AlibabaGroup +paypal-marketing.co.uk^Paypal +discoveruniversal.com^Comcast +babyboomerpeoplemeet.com^Match Group +lazlogistics.my^AlibabaGroup +yandex.com.am^Yandex +receita.com^GrupoGlobo +fairiesbranch.com^Admiral +mkt6316.com^Acoustic +paypal-knowledge.com^Paypal +mkt6478.com^Acoustic +rithum.com^Rithum +webcontentassessor.com^TMTDigital +privacy-center.org^Didomi +shop.com.mm^AlibabaGroup +vivanuncios.com.mx^eBay +mastercard.us^Mastercard +acemlnd.com^ActiveCampaign +tiqcdn.com^Tealium +telegram.com^Gannett +uc.cn^AlibabaGroup +stripecdn.com^Stripe +simulateswing.com^Admiral +wknd.ai^Wunderkind +gliq.com^GlobalIntelliSystems +theoldhamtimes.co.uk^Gannett +getshogun.com^Shogun +airbnb.pt^Airbnb +validity.com^Validity +sony.net^Sony +medallia.eu^Medallia +delmarvanow.com^Gannett +campaigner.com^Campaigner +gumtree.com.au^eBay +alpharank.ai^Alpharank +shesubscriptions.com^Admiral +oncustomer.asia^Novaon Tech +telemundoarizona.com^Comcast +alpharank.io^Alpharank +akismet.com^Automattic +velvetquasar.com^Admiral +energeticladybug.com^Admiral +ktvq.com^E.W. Scripps Company +g2c.tv.br^GrupoGlobo +acint.net^ArtificialComputationIntelligence +amocrm.ru^amoCRM +experian.com.pl^Experian +zoominfo.com^ZoomInfo +z01.azurefd.net^attraxcdnprod1-freshed3dgayb7c3.z01.azurefd.net +vcmdiawe.com^ByBorg +hearst.com.tw^Hearst +damai.cn^AlibabaGroup +fewjuice.com^Admiral +mkt8628.com^Acoustic +podname.com^Admiral +buildingknife.com^Admiral +merequartz.com^Admiral +mkt4644.com^Acoustic +awstrack.me^Amazon +fotogramas.es^Hearst +fearlesstramp.com^Admiral +ttvnw.net^Amazon +logly.co.jp^Logly +coveo.com^Coveo +americanexpress.com.cn^American Express +sony.co.uk^Sony +cognitiv.ai^Cognitiv +mambasms.com^MambaSMS +americanexpress.lk^American Express +ctctcdn.com^ConstantContact +ansira.com^Ansira +charmingplate.com^Admiral +paypal-donations.co.uk^Paypal +zipmoney.com.au^Zip +bucksfreepress.co.uk^Gannett +mysanantonio.com^Hearst +ascent360.com^Ascent360 +augustachronicle.com^Gannett +nextmillmedia.com^NextMillennium +boldapps.net^BoldCommerce +npdigital.com^NPDigital +gleamingcow.com^Admiral +ridibooks.com^Ridi +breakableinsurance.com^Admiral +stamfordadvocate.com^Hearst +stnvideo.com^MinuteMedia +adsugar.com^AdSugar +cmail3.com^CampaignMonitor +airbnb.co.in^Airbnb +dynamics365.cl^Microsoft +aliexpress.ru^AlibabaGroup +jconline.com^Gannett +seel.com^Seel +nordicdataresources.net^nordicdataresources +mapixl.com^MarketingArchitects +aliyun.com^AlibabaGroup +usbrowserspeed.com^usbrowserspeed.com +tamedia.ch^TXGroup +atdata.com^AtData +clickacumba.com^Acumbamail +truoptik.com^TransUnion +hearstautos.com^Hearst +atlassian.net^Atlassian +elpasotimes.com^Gannett +herokuapp.com^Salesforce +astarsbuilding.com^CHEQ +blaze.tv^Hearst +loom.com^Atlassian +lazada.kr^AlibabaGroup +callrail.com^CallRail +powerplatform.com^Microsoft +etarget.eu^Etarget +nullnorth.com^Admiral +trello.com^Atlassian +mkt8988.com^Acoustic +trustedshops.com^Trusted Shops +laboredlocket.com^Admiral +attn.tv^Attentive +cozitv.com^Comcast +audience-solutions.com^Audience Solutions +btloader.com^Blockthrough +marketops.com^MarketOps +cmail21.com^CampaignMonitor +media-rockstargames-com.akamaized.net^Take-Two +ledburyreporter.co.uk^Gannett +doordashcateringconcierge.com^DoorDash +metrowestdailynews.com^Gannett +mkt9203.com^Acoustic +mountain.com^MNTN +shrillspoon.com^Admiral +augeomarketing.com^Augeo +funcaptcha.com^ArkoseLabs +hotjar.io^Hotjar +iseaskies.com^CHEQ +kakao.vc^Kakao +rockstarnorth.com^Take-Two +csgi.com^CSG +getadmiral.com^Admiral +cmail12.com^CampaignMonitor +swym.it^Swym +samknows.com^Cisco +rageagainstthesoap.com^CHEQ +loop11.com^Loop11 +pubfuture.com^PubFuture +boomtrain.com^ZetaGlobal +symphonytalent.com^SymphonyTalent +newportri.com^Gannett +pbstck.com^Pubstack +nvsgames.com^Bytedance +abstractedamount.com^Admiral +kakaohealthcare.com^Kakao +islingtongazette.co.uk^Gannett +paleleaf.com^Admiral +nuevoestilo.es^Hearst +scene7.com^Adobe +golfcartlaws.com^Admiral +siriusxm.com^SiriusXM +mkt5906.com^Acoustic +wayin.com^Marigold +widespace.com^Azerion +lazlogistics.co.id^AlibabaGroup +menshealth.com^Hearst +wiltshiretimes.co.uk^Gannett +nondescriptnote.com^Admiral +azion.com^Azion +azion.com.br^Azion +salsacartel.com^Admiral +omnisend.com^Omnisend +appboycdn.com^Braze +lazada.co.id^AlibabaGroup +decisivebase.com^Admiral +mkt6288.com^Acoustic +wt-safetag.com^Mapp +xylionmail.pl^MailTracker +pnj.com^Gannett +ad-srv.net^Neory +townnews.com^BLOX Digital +milforddailynews.com^Gannett +norwichbulletin.com^Gannett +afraidlanguage.com^Admiral +verseballs.com^Admiral +cognitivlabs.com^Cognitiv +mkt922.com^Acoustic +serverbid.com^Consumable +news-journalonline.com^Gannett +mail365.ru^Mail365 +impact.com^Impact +botnot.io^Yofi +3gl.net^Catchpoint +iqiyi.com^Baidu +paddlepaddle.org.cn^Baidu +clammychicken.com^Admiral +womenshealthmag.com^Hearst +bannercrowd.net^Bannercrowd +superficialspring.com^Admiral +qcloud.com^Tencent +yandex.uz^Yandex +blushingbeast.com^Admiral +bandborder.com^Admiral +paypal.biz^Paypal +flux-cdn.com^Flux +katc.com^E.W. Scripps Company +ldsplanet.com^Match Group +centro.net^BasisTechnologies +mkt6264.com^Acoustic +bournemouthecho.co.uk^Gannett +palmbeachdailynews.com^Gannett +steadfastsystem.com^Admiral +basis.net^BasisTechnologies +wlwt.com^Hearst +extole.com^Extole +batch.com^Batch +hextom.com^Hextom +beelinks.solutions^Beelinks +mastercard.de^Mastercard +amstatcorp.com^Hearst +anymindgroup.com^Anymind Group +jpeoplemeet.com^Match Group +statesman.com^Hearst +clevertap.com^CleverTap +sendgrid.net^Twilio +edp24.co.uk^Gannett +revjet.com^Innervate +cintnetworks.com^Cint +hdslb.com^Bilibili +mkt5419.com^Acoustic +sony-asia.com^Sony +binance.charity^Binance +gulfcoastnewsnow.com^Hearst +dotdashmeredith.com^DotdashMeredith +kwai.net^Joyo +paystack.com^Paystack +bitrix24.com^Bitrix24 +bitrix.info^Bitrix24 +road-heroes.com^Kakao +spurioussquirrel.com^Admiral +blockthrough.com^Blockthrough +fxm.so^AlibabaGroup +quadpay.com^Zip +blueconic.com^BlueConic +kijiji.ca^eBay +casaecomida.com^GrupoGlobo +blueshift.com^BlueShift +womenshealth.com.au^Hearst +planebasin.com^Admiral +fndrsp.net^FundraiseUp +wayfair.ca^Wayfair +cuebiq.com^Cuebiq +airbnb.rs^Airbnb +paypal-prepagata.com^Paypal +lazadapay.sg^AlibabaGroup +videobaba.xyz^videobaba.xyz +a2z.com^Amazon +acquia.com^Acquia +magnite.com^Magnite +pages02.net^Acoustic +invuedigital.com^Hearst +zencdn.net^Brightcove +commercepartnerhub.com^Meta +riskid.security^Transmit Security +cmail5.com^CampaignMonitor +mediaworks.hu^Mediaworks +earthups.com^Admiral +talosintelligence.com^Cisco +ele.me^AlibabaGroup +cloud-media.fr^CloudMedia +arizona61.com^E.W. Scripps Company +carbonads.net^BuySellAds +dxkulture.com^DXKulture +livecamcdn.com^OnCam +buysellads.net^BuySellAds +piano.io^Piano +byborgenterprises.com^ByBorg +partnerize.com^Partnerize +alemdohorizonte.globo^GrupoGlobo +hbrd.io^HybridAI +sp-gn.com^Spider Labs +servenobid.com^ServeNoBid +trkn.us^Claritas +mdhv.io^mdhv.io +convertkit-mail3.com^ConvertKit +bytedance.com^Bytedance +nebulacrescent.com^Admiral +todoalicante.es^Vocento +affasi.com^Zaful +newarkadvocate.com^Gannett +shareaholic.net^Shareaholic +record-courier.com^Gannett +capcut.com^Bytedance +aviasales.com^Giant Travel Unicorn Two +leadplace.fr^Ermes +dreamina.ai^Bytedance +kreamcorp.com^Naver +mawf.io^Bytedance +surreycomet.co.uk^Gannett +animalcoder.com^Admiral +pushnami.com^Pushnami +womennow.es^Vocento +airbnb.lv^Airbnb +moonton.com^Bytedance +beamvolcano.com^Admiral +largsandmillportnews.com^Gannett +bleacherreport.net^Warner Bros. Discovery +ermes.ai^Ermes +mkt10049.com^Acoustic +mastercard.com.mx^Mastercard +trackedlink.net^dotdigital Group +heartbreakingmind.com^Admiral +createsend23.com^CampaignMonitor +rightinbox.com^RightInbox +larksuite.com^Bytedance +cp20.com^Campaigner +tiktok.com^Bytedance +pangle-ads.com^Bytedance +gente.it^Hearst +paypal.no^Paypal +resonantrock.com^Admiral +grunge.com^Static Media +tiktokcdn-us.com^Bytedance +tiktokcdn.com^Bytedance +theargus.co.uk^Gannett +fakenhamtimes.co.uk^Gannett +tempertrick.com^Admiral +tiktokv.us^Bytedance +woocommerce.com^Automattic +powerad.ai^NextMillennium +cmail2.com^CampaignMonitor +revistacasaecomida.com.br^GrupoGlobo +supership.jp^Supership +mastercard.co.uk^Mastercard +cafirebreather.com^CHEQ +mymanheim.com^CoxEnterprises +activatiemarketing.nl^ActivatieMarketing +beaumontenterprise.com^Hearst +iqzone.com^IQZone +publicisgroupe.com^PublicisGroupe +cantonrep.com^Gannett +microsoftstart.com^Microsoft +rmtag.com^Rakuten +data-axle.com^DataAxle +paypal.ie^Paypal +blk-app.com^Match Group +yorkdispatch.com^Gannett +klarnaservices.com^Klarna +lordofthesuperfrogs.com^CHEQ +alcmpn.com^Adstra +yabidos.com^Fraudlogix +maggieeatstheangel.com^CHEQ +adelement.com^AdElement +lansingstatejournal.com^Gannett +digiseg.io^Digiseg +centraldispatch.com^CoxEnterprises +nocodelytics.com^Nocodelytics +smartbear.com^SmartBear +seaskylink.com^CHEQ +audrte.com^Audiencerate +kakaocloud.com^Kakao +thesmilingpencils.com^CHEQ +theindychannel.com^E.W. Scripps Company +getwarmly.com^Warmly +greatyarmouthmercury.co.uk^Gannett +asianpeoplemeet.com^Match Group +slido.com^Cisco +youseasky.com^CHEQ +s-onetag.com^Sovrn +atlassian.cloud^Atlassian +wymondhamandattleboroughmercury.co.uk^Gannett +scaredslip.com^Admiral +distroscale.com^DistroScale +mutemailbox.com^Admiral +coxcodeofconduct.com^CoxEnterprises +ad.gt^Audigent +kitewheel.com^CSG +freestar.com^Freestar +entravision.com^Entravision +webtoon.com^Naver +atomicpark.email^AtomPark +tranquilveil.com^Admiral +amarillo.com^Gannett +gimbal.com^Infillion +azcentral.com^Gannett +playground.xyz^Playground +abtshield.com^Edge NPD +commandbar.com^Amplitude +meremark.com^Admiral +runcornandwidnesworld.co.uk^Gannett +nbcuniversallaunch.com^Comcast +basiscommunicatie.nl^ActivatieMarketing +comcast.com^Comcast +meetfasttrack.com^Microsoft +hydraconcept.com^Admiral +cmail17.com^CampaignMonitor +nbcolympics.com^Comcast +searchserverapi.com^Bolide +ebaymotorspro.co.uk^eBay +buzzoola.com^Buzzoola +akta.tech^Akta +playgroundxyz.com^Playground +bpsgameserver.com^BML Group +82o9v830.com^Admiral +informalbook.com^Admiral +fishrobotflower.com^CHEQ +hearstglobalsolutions.com^Hearst +ijhyugb.com^ijhyugb.com +dailyrecord.com^Gannett +cimpress.com^Cimpress +qualityunit.com^Quality Unit +cmail28.com^CampaignMonitor +wirralglobe.co.uk^Gannett +lubbockonline.com^Gannett +paypal.co.nz^Paypal +singroot.com^Admiral +warmafterthought.com^Admiral +wrongwound.com^Admiral +gazette-news.co.uk^Gannett +manus.im^Manus +cmail30.com^CampaignMonitor +mujerhoy.com^Vocento +godpvqnszo.com^godpvqnszo.com +manuscdn.com^Manus +playwire.com^Playwire +xfyun.cn^Xfyun +summerobject.com^Admiral +marieclaire.com.br^GrupoGlobo +mkt7783.com^Acoustic +sablesong.com^Admiral +rategain.com^RateGain +axzcorp.com^Kakao +rhyljournal.co.uk^Gannett +showmeyouradsnow.com^showmeyouradsnow.com +blackfire.io^Upsun +cmail6.com^CampaignMonitor +pfcinternacional.com^GrupoGlobo +lunchroomlock.com^Admiral +mkt7946.com^Acoustic +affinity.co^Affinity.co +hornblower.com^Hornblower Group +despegar.com.ar^Prosus +trafficfactory.com^TrafficStars +snapattack.com^Cisco +ruralrobin.com^Admiral +createsend10.com^CampaignMonitor +noregon.com^Hearst +despegar.co.cr^Prosus +chewy.com^Chewy +moneykit.net^Sony +createsend11.com^CampaignMonitor +distinctrobin.com^distinctrobin.com +aliexpress.fr^AlibabaGroup +relevant-digital.com^Relevent +tntdrama.com^Warner Bros. Discovery +createsend15.com^CampaignMonitor +tmall.hk^AlibabaGroup +brid.tv^TargetVideo +smarterclick.com^intent.ly +precisear.com^Admiral +bleachbubble.com^Admiral +quemacontece.com^GrupoGlobo +createsend18.com^CampaignMonitor +vauto.com^CoxEnterprises +createsend2.com^CampaignMonitor +ludlowadvertiser.co.uk^Gannett +barion.com^Barion +mynbc5.com^Hearst +cjonline.com^Gannett +createsend20.com^CampaignMonitor +createsend24.com^CampaignMonitor +sportradar.com^SportRadar +bitbucket.io^Atlassian +yourlifedream.com^Admiral +lazadapay.co.id^AlibabaGroup +railwayreason.com^Admiral +adalyser.com^Adalyser +dy.dev^Mastercard +createsend30.com^CampaignMonitor +mastercardcenter.org^Mastercard +1plusx.com^TripleLift +2trk.info^Preciso +createsend5.com^CampaignMonitor +mkt6260.com^Acoustic +amazon.dev^Amazon +dailymotion.com^DailyMotion +cheboygannews.com^Gannett +oncaller.asia^Novaon Tech +cpro20.com^Campaigner +boomeranggmail.com^BoomerangGmail.com +newschief.com^Gannett +atlantafalcons.com^NFL +naver.net^Naver +captifytechnologies.com^Captify +tk0x1.com^LoopMe +adnext.pl^AdNext Group +thisgreencolumn.com^CHEQ +powerfront.com^Powerfront +cartful.com^Cartful +darlingtonandstocktontimes.co.uk^Gannett +evasivejar.com^Admiral +drip.com^Drip Global +extole.io^Extole +mastercard.dk^Mastercard +mrtnsvr.com^mrtnsvr.com +8ctch.com^Catch +ketv.com^Hearst +vistaprint.com^Cimpress +venatus.com^Venatus +mkt7971.com^Acoustic +mkt10153.com^Acoustic +aamapiv2.com^AuditedMedia +techtarget.com^Informa +accedian.io^Cisco +mowgoats.com^Admiral +shopify.com^Shopify +fksnk.com^BidMind +zyngaads.com^Take-Two +videoplayerhub.com^Blockthrough +timesrecordnews.com^Gannett +ciscoinvestments.com^Cisco +enviousshape.com^Admiral +donorsupport.co^FundraiseUp +ciscolive.com^Cisco +scaredstomach.com^Admiral +duo.com^Cisco +maillist-manage.eu^Zoho +ondemand.com^SAP +adspyglass.com^Adspyglass +palmbeachpost.com^Gannett +andstarsbuilding.com^CHEQ +bluetriangle.com^BlueTriangle +adcash.com^AdCash +iqm.com^IQM +91.com^Baidu +americanexpresscruise.com^American Express +thousandeyes.com^Cisco +valtix.com^Cisco +yango-tech.com^RideTechnology Global +vidcast.io^Cisco +securionpay.com^Shift4 +nbc26.com^E.W. Scripps Company +commander1.com^CommandersAct +coshoctontribune.com^Gannett +bloomingdales.com^Macy's +usabilla.com^STG +cmail11.com^CampaignMonitor +pollsandinsights.com^Civic Science +omnisnippet1.com^Omnisend +huntspost.co.uk^Gannett +askdriver.com^Admiral +pipedrive.com^Pipedrive +cleantalk.org^CleanTalk +kakaostyle.com^Kakao +sendcloud.net^SendCloud +mailblue.eu^MailBlue +aidem.com^aidem +cds-global.com^Hearst +oxygen.com^Comcast +leadfeeder.com^Dealfront +gamerafter.com^GamerAfter +clickadu.com^Clickadu +nextroll.com^NextRoll +experian.pt^Experian +1688.com^AlibabaGroup +seedtag.com^SeedTag +sirdata.com^SirData +o789thktrk.com^o789thktrk.com +rgj.com^Gannett +cloudflare.tv^Cloudflare +nightwound.com^Admiral +cloudflareworkers.com^Cloudflare +botman.ninja^Botman Networks +dreamworks.com^Comcast +microsoftstart.cn^Microsoft +tradelab.fr^JellyFish +hunker.com^Static Media +cmail22.com^CampaignMonitor +thepointyspritesclub.com^CHEQ +webgains.io^ad pepper group +colossusssp.com^ColossusMedia +productionservices.sky^Comcast +revistacasaejardim.com.br^GrupoGlobo +comcastinvoices.com^Comcast +airbnb.co.za^Airbnb +comcastspectacor.com^Comcast +kimberlite.io^Kimberlite.io +hayu.com^Comcast +ads7-adnow.com^Adnow +xn--d1acpjx3f.xn--p1ai^Yandex +neory.com^Neory +svg.com^Static Media +wpshsdk.com^wpshsdk.com +kakaocorp.com^Kakao +msnbc.com^Comcast +playentry.org^Naver +deloittedigital.com^DeloitteDigital +thryv.com.au^Thryv +nbcphiladelphia.com^Comcast +nbcsandiego.com^Comcast +troubleshade.com^Admiral +lazcdn.com^AlibabaGroup +sj-r.com^Gannett +nbcsportsphiladelphia.com^Comcast +disturbedquiet.com^Admiral +nbcuniversal.com^Comcast +cmail1.com^CampaignMonitor +enormousearth.com^Admiral +wearevoice.co.uk^Gannett +nbcuniversalprivacy.com^Comcast +nbcuniversalnewsgroup.com^Comcast +jioworldcentre.com^Reliance +versium.com^Versium +agenciaoglobo.com.br^GrupoGlobo +mkt8007.com^Acoustic +friendshipmale.com^Unseen +2489may2024.com^horonstogly.com +clevertap-prod.com^CleverTap +aliasanvil.com^Admiral +enfieldindependent.co.uk^Gannett +nove.tv^Warner Bros. Discovery +fallaciousfifth.com^Admiral +chimpstatic.com^Intuit +thestarpress.com^Gannett +gumtree.ie^eBay +brighttoe.com^Admiral +trycaviar.com^DoorDash +ctnsnet.com^Crimtan +cometlytrack.com^Cometly +nflextrapoints.com^NFL +mythad.com^mythad.com +ktkjmp.com^ktkjmp.com +warmly.ai^Warmly +cautiouscredit.com^Admiral +j93557g.com^Admiral +sanook.com^Tencent +microsoftstore.ca^Microsoft +archerapp.com^Match Group +spotify.com^Spotify +telemundodallas.com^Comcast +telemundo33.com^Comcast +mailblue.nl^MailBlue +catchpoint.com^Catchpoint +telemundohouston.com^Comcast +taobao.com^AlibabaGroup +telemundolasvegas.com^Comcast +mieruca-connect.com^Faber Company +ionplustv.com^E.W. Scripps Company +telemundowashingtondc.com^Comcast +nflflag.com^NFL +nflshop.com^NFL +independentmail.com^Gannett +adhese.eu^DoggybitesBV +katalys.com^Katalys +businesscentral.tw^Microsoft +adinplay.com^Venatus +bugsnag.com^SmartBear +24metrics.com^24metrics +thelist.com^Static Media +universalpictures.com^Comcast +resonantbrush.com^Admiral +mfilterit.net^Six Dee Netad Solutions +ads5-adnow.com^Adnow +universalproductsexperiences.com^Comcast +baidu.jp^Baidu +podium.com^Podium +telemundo48elpaso.com^Comcast +polarcdn-engine.com^Nova +kadam.net^KadamAdvertising +usanetwork.com^Comcast +cloisteredcurve.com^Admiral +experian.it^Experian +airbnb.lu^Airbnb +oldfashionedoffer.com^Admiral +solarwinds.com^SolarWinds +cometly.com^Cometly +morefriendly.com^Admiral +g2.com^G2 +colossusmediassp.com^ColossusMedia +adnet.de^adNET +dc.com^Warner Bros. Discovery +cmail29.com^CampaignMonitor +lavozdigital.es^Vocento +marketingautomation.services^ConstantContact +contentful.com^Contentful +goatbillions.com^Admiral +voicepins.com^Admiral +elnortedecastilla.es^Vocento +exte.com^EXTE +daexauto.com^daexauto.com +inmobicdn.net^InMobi +leonoticias.com^Vocento +aisleahead.com^AisleAhead +cudasvc.com^Barracuda +kakaopaysec.com^Kakao +thehour.com^Hearst +powerapps.io^Microsoft +dynamics365businesscentral.co.nz^Microsoft +convertkit-mail4.com^ConvertKit +metricswpsh.com^metricswpsh.com +cpro30.com^Campaigner +thelocalvibe.info^Hearst +vocus.io^Vocus +nextdoor.nl^Nextdoor +digioh.com^Digioh +selectivesummer.com^Admiral +diariosur.es^Vocento +cookieinformation.com^CookieInformation +quantumdex.io^quantumdex.io +azionedge.net^Azion +ebuzzing.com^Teads +cox.com^CoxEnterprises +playd.com^PlayD +dayone.me^Automattic +fearlessfaucet.com^Admiral +coxfarms.com^CoxEnterprises +paypal-promo.es^Paypal +tennessean.com^Gannett +constantcontactpages.com^ConstantContact +lazada.co.th^AlibabaGroup +mkt6917.com^Acoustic +liveramp.uk^LiveRamp +coxmedia.com^CoxEnterprises +skyup.sky^Comcast +superawesome.tv^SuperAwesome +adhese.com^DoggybitesBV +azionapi.net^Azion +ya.ru^Yandex +didtheyreadit.com^DidTheyReadIt +yandex.tr^Yandex +azarlive.com^Match Group +zipthelake.com^Admiral +denverbroncos.com^NFL +netmeds.tech^Reliance +kijiji.it^eBay +despegar.com.ve^Prosus +emlmkt.com^Acumbamail +cdnsnapwidget.com^SnapWidget +stalbansreview.co.uk^Gannett +getelevar.com^Elevar +unbxdapi.com^unbxdapi.com +trackonomics.net^Impact +claritas.com^Claritas +jsdelivr.net^Volentio JSD +blismedia.com^Blis +cmail9.com^CampaignMonitor +firaxis.com^Take-Two +fyusion.com^CoxEnterprises +ezodn.com^Ezoic +lel.asia^AlibabaGroup +getklar.com^Klar +zanesvilletimesrecorder.com^Gannett +adsugar.ch^AdSugar +hmpg.com^Hearst +mastercard.co.za^Mastercard +comicskingdom.com^Hearst +1dmp.io^CleverData +quantummetric.com^QuantumMetric +sellmycar.com.au^CoxEnterprises +priceless.com^Mastercard +mkt1248.com^Acoustic +discovery.com^Warner Bros. Discovery +vinsolutions.com^CoxEnterprises +telemundo20.com^Comcast +customerservice-macys.com^Macy's +nflfilms.com^NFL +redonline.co.uk^Hearst +xtime.com^CoxEnterprises +togreencolumn.com^CHEQ +permutive.com^Permutive +customeriomail.com^CustomerIO +aranet.io^ARANet +northwichguardian.co.uk^Gannett +fundraiseup.com^FundraiseUp +nbcsportsnext.com^Comcast +adnami.io^Adnami +px-cdn.net^HumanSecurity +cacheserv.com^cacheserv.com +derehamtimes.co.uk^Gannett +isovalent.com^Cisco +hepsiburada.net^D-MARKET Elektronik Hizmetler Tic. +mastercard.com.tw^Mastercard +wiltonbulletin.com^Hearst +nitropack.io^NitroPack +tctm.co^CallTrackingMetrics +qiwi.global^QIWIGroup +datadoghq.com^DataDog +connectif.cloud^ConnectIf +uplynk.com^Edgio +burnhamandhighbridgeweeklynews.co.uk^Gannett +en25.com^Oracle +datadoghq.eu^DataDog +faultycanvas.com^Admiral +paypal.co.th^Paypal +nbcbayarea.com^Comcast +dailycommercial.com^Gannett +bestofall.info^bestofall.info +bnbchain.org^Binance +viadata.store^viadata.store +captcha-delivery.com^Datadome +artsai.com^ArtsAI +effervescentcoral.com^Admiral +deluxe.com^Deluxe +skystudioselstree.com^Comcast +ninthdecimal.com^InMarket +dhl.com^Deutsche Post DHL +dhl.de^Deutsche Post DHL +dhlsameday.com^Deutsche Post DHL +meetyuzu.com^Match Group +somersetcountygazette.co.uk^Gannett +sjv.io^Impact +webtoons.com^Naver +globalinclusivegrowthsummit.com^Mastercard +deliverimp.com^DeliverImp +express.dhl^Deutsche Post DHL +asianfoodnetwork.com^Warner Bros. Discovery +piquantgrove.com^Admiral +admixer.net^AdmixerEU +fakedisguise.com^Admiral +deviceatlas.com^Device Atlas +ringsrecord.com^Admiral +redditforcommunity.com^reddit +merchant-center-analytics.goog^Google +deviceatlas-cdn.com^Device Atlas +paypal.com.pe^Paypal +dhl-usa.com^Deutsche Post DHL +wpncdn.com^ExoClick +thegleaner.com^Gannett +airbnb.hu^Airbnb +bablosoft.com^Bablosoft +stakingbasket.com^Admiral +experian.fr^Experian +dpgroupcorp.com^Digital Partners Group +dynata.com^Dynata +lunamedia.live^LunaMedia +kakaogamescorp.com^Kakao +mastercard.com.hk^Mastercard +meetmarigold.com^Marigold +keap.com^Keap +dotdigital.com^Dotdigital +nostalgicknot.com^Admiral +wisbechstandard.co.uk^Gannett +coxautomotive.com.br^CoxEnterprises +dreamdata.cloud^Dreamdata +mastercard.com.co^Mastercard +leighjournal.co.uk^Gannett +sleeknote.com^Drip Global +theweathernetwork.com^Pelmorex +abc15.com^E.W. Scripps Company +thecalifornian.com^Gannett +smile.io^Smile +universalorlandovacations.com^Comcast +leadinfo.com^LeadInfo +brownsugar.com^E.W. Scripps Company +strangeclocks.com^Admiral +sumome.com^BDOW +gloriousbeef.com^Admiral +looseloaf.com^Admiral +openweb.com^OpenWeb +thescottishfarmer.co.uk^Gannett +franksfloral.com^Admiral +news-press.com^Gannett +grittv.com^E.W. Scripps Company +spotim.market^OpenWeb +partypoker.com^PartyPoker +mastercard.com.ge^Mastercard +iontelevision.com^E.W. Scripps Company +cmail16.com^CampaignMonitor +hsleadflows.net^HubSpot +kpax.com^E.W. Scripps Company +orbee.com^Orbee +krtv.com^E.W. Scripps Company +mcdonoughvoice.com^Gannett +harpersbazaararabia.com^Hearst +firedrumemailmarketing.com^FireDrum +sustainablefitch.com^Hearst +presscoder.com^Admiral +usercentrics.com^UserCentrics +n.rich^N.Rich +ktnv.com^E.W. Scripps Company +scaredsnakes.com^Admiral +annalect.com^Omnicom Group +ktvh.com^E.W. Scripps Company +dealer.com^CoxEnterprises +telecine.com.br^GrupoGlobo +dynamics.cz^Microsoft +kxxv.com^E.W. Scripps Company +dv.tech^DoubleVerify +laff.com^E.W. Scripps Company +connectadrealtime.com^ConnectAdRealtime +elledeco.cn^Hearst +revistacasaecomida.com^GrupoGlobo +scintillatingsilver.com^Admiral +ithacajournal.com^Gannett +a-mx.com^AdaptMX +bluemercury.com^Macy's +resonate.com^Resonate +videoamp.com^VideoAmp +lex18.com^E.W. Scripps Company +moorshoes.com^Admiral +emetriq.com^emetriq +diariovasco.com^Vocento +azioncdn.net^Azion +skisofa.com^Admiral +dekiruca.com^Faber Company +scrippsnews.com^E.W. Scripps Company +captivatingcanyon.com^Admiral +authoremail.com^AuthorEmail +adquery.io^adQuery +htplayground.com^htplayground.com +sflcw.com^E.W. Scripps Company +2522june2024.com^horonstogly.com +llportal.sg^AlibabaGroup +spellingbee.com^E.W. Scripps Company +lenconnect.com^Gannett +yourlocalguardian.co.uk^Gannett +knowledgebase.com^Text +jwpsrv.com^JWP Connatix +becclesandbungayjournal.co.uk^Gannett +sciencechannel.com^Warner Bros. Discovery +videoplaza.tv^Invidi +dynamics.com.tr^Microsoft +handsomelythumb.com^Admiral +blitzcampaigns.com^Admiral +mkt8586.com^Acoustic +nflplayercare.com^NFL +7roundprince.com^CHEQ +superhuman.com^Superhuman +wmar2news.com^E.W. Scripps Company +paypal.dk^Paypal +melodiouscomposition.com^Admiral +wxyz.com^E.W. Scripps Company +paypal-experience.com^Paypal +liveramp.es^LiveRamp +diezminutos.es^Hearst +stable.cz^WebGlobe +microsoft365.com^Microsoft +catch.tech^Catch +scrippsdigital.com^E.W. Scripps Company +ecisolutions.com^ECI +lassocrm.com^ECI +destinationamerica.com^Warner Bros. Discovery +euid.eu^EUiD +creditsights.com^Hearst +unblockia.com^EXTE +orbsrv.com^orbsrv.com +siteimproveanalytics.io^SiteImprove +trudelltrailers.com^CoxEnterprises +youtube-nocookie.com^Google +firstfinds.com^Hearst +dmxleo.com^DailyMotion +adlightning.com^Boltive +edgenpd.com^Edge NPD +totvs.com^TOTVS +socio.events^Cisco +transmitsecurity.com^Transmit Security +hellofyllo.com^Fyllo +invoca.net^Invoca +mkt32.net^Acoustic +25ans.jp^Hearst +discoverylife.com^Warner Bros. Discovery +dhlecs.com^Deutsche Post DHL +edg.io^Edgio +xpressmail.hu^XpressMail +bitbucket.org^Atlassian +desertsun.com^Gannett +metadata.io^Metadata +faucetfoot.com^Admiral +ethicalcapitalpartners.com^EthicalCapitalPartners +trafficjunky.com^EthicalCapitalPartners +airbnb.pl^Airbnb +adtng.com^EthicalCapitalPartners +warnertv.de^Warner Bros. Discovery +trafficjunky.net^EthicalCapitalPartners +rusticprice.com^Admiral +e-volution.ai^EvolutionTechnologies +nebulousquasar.com^Admiral +datacredito.com.co^Experian +the-leader.com^Gannett +ozoneproject.com^OzoneProject +pages07.net^Acoustic +experian.com.ar^Experian +mfilterit.com^Six Dee Netad Solutions +comcastventures.com^Comcast +mapillary.com^Meta +lmsqueezy.com^Stripe +thetelegraphandargus.co.uk^Gannett +sidmouthherald.co.uk^Gannett +jioadsweb.akamaized.net^Reliance +eagerknight.com^Admiral +experian.com.mx^Experian +telemundoutah.com^Comcast +morecommerce.com^MoreCommerce +gorgias.chat^Gorgias +experian.de^Experian +experian.gr^Experian +kmbc.com^Hearst +joincheckmate.com^Checkmate +enterdrama.com^Admiral +cinemax.com^Warner Bros. Discovery +experian.se^Experian +ntv.io^Nativo +telemundopr.com^Comcast +elystandard.co.uk^Gannett +bicycling.com^Hearst +seniorblackpeoplemeet.com^Match Group +alpineiq.com^Alpine IQ +creditkarma.com^Intuit +rackspace.com^Rackspace +senderit.pl^MailTracker +acacia-inc.com^Cisco +fraud.io^Fraud0 +investigationdiscovery.com^Warner Bros. Discovery +email-signature-image.com^EmailTrackerWebsite +ezoic.com^Ezoic +neighborlywatch.com^Admiral +followup.cc^FollowUP +blackbook.com^Hearst +southwalesargus.co.uk^Gannett +receptivereaction.com^Admiral +sapo.vn^Sapo +zeronaught.com^F5 +restructureinvention.com^Admiral +lemmatechnologies.com^Lemma +airbnb.ru^Airbnb +app.link^Branch +therams.com^NFL +fabercompany.co.jp^Faber Company +plotrabbit.com^Admiral +so.la^Faber Company +ubiquitoussea.com^Admiral +mmstat.com^AlibabaGroup +fingerprint.com^FingerprintJS +fpcdn.io^FingerprintJS +fpnpmcdn.net^FingerprintJS +openfpcdn.io^FingerprintJS +mindmeld.com^Cisco +despegar.com.ec^Prosus +tinyswans.com^Admiral +pangleglobal.com^Bytedance +alloaadvertiser.com^Gannett +mastercard.hr^Mastercard +quest.nl^Hearst +geniussports.com^Genius Sports +dealfront.com^Dealfront +timestelegram.com^Gannett +bmc.com^BMC +dreamdata.io^Dreamdata +onetag-sys.com^OneTag +shein.com.mx^Shein +telemundochicago.com^Comcast +paypal-mktg.com^Paypal +emaillabs.co^EmailLabs +vntsm.com^Venatus +ssm.codes^Sem, Seo and More Online Marketing +equativ.com^Equativ +airbnb.com.mt^Airbnb +emailinc.net^FireDrum +kwai.com^Joyo +psmmarketing.com^Firestorm Marketing +metacareers.com^Meta +kcra.com^Hearst +nrich.ai^N.Rich +flatironmedia.com^FlatIronMedia +sonypark.com^Sony +pixfuture.com^PixFuture +flytedesk.com^Flytedesk +fouanalytics.com^FouAnalytics +behance.net^Adobe +thetowntalk.com^Gannett +acemlna.com^ActiveCampaign +fraudlogix.com^Fraudlogix +philadelphiaeagles.com^NFL +glotgrx.com^Fraudlogix +hutchnews.com^Gannett +xoom.com^Paypal +exponea.com^BloomReach +hearstmagazines.co.uk^Hearst +aibsgc.com^aibsgc.com +assertiveyield.com^AssertiveYield +mkt941.com^Acoustic +sentry.io^FunctionalSoftware +intent.ly^intent.ly +bisnode.com^Bisnode +braze.com^Braze +t.co^Twitter +fixidle.com^fixidle.com +tenpay.com^Tencent +mastercard.bg^Mastercard +getrockerbox.com^RockerBox +courttv.com^E.W. Scripps Company +alloutstudio.com^Hearst +kjrh.com^E.W. Scripps Company +yvmads.com^yvmads.com +funraise.org^Funraise +rokt.com^Rokt +mixmax.com^MixMax +dailyecho.co.uk^Gannett +brentwoodlive.co.uk^Gannett +g2crowd.com^G2 +logistichange.com^IBM +ediemidnightzombies.com^CHEQ +nextdoor.co.uk^Nextdoor +impartialreporter.com^Gannett +fsinsider.com^Microsoft +ipqualityscore.com^IPQualityScore +coolguesthouse.com^Admiral +naivestatement.com^Admiral +kbb.ca^CoxEnterprises +createsend19.com^CampaignMonitor +owlsr.us^Admiral +tackytrains.com^Admiral +mastercard.com.ar^Mastercard +beanfun.com^Gamania +kakaopiccoma.com^Kakao +redding.com^Gannett +truedat.io^IBM +salesmanago.com^SALESmanago +experian.cl^Experian +collegepuzzlechallenge.com^Microsoft +createsend25.com^CampaignMonitor +compass-fit.jp^MicroAd +oracleinfinity.io^Oracle +ortb.net^LimelightInc +hchb.com^Hearst +sky.it^Comcast +nbclosangeles.com^Comcast +banburycake.co.uk^Gannett +mapbasin.com^Admiral +trynow.net^trynow.net +registerguard.com^Gannett +regulatesleet.com^Admiral +barkinganddagenhampost.co.uk^Gannett +handyfireman.com^Admiral +sbgi.net^Sinclair +freedomvoice.com^Go Daddy +wmtw.com^Hearst +trendyol.com^AlibabaGroup +barryanddistrictnews.co.uk^Gannett +seaskydvd.com^CHEQ +battlecreekenquirer.com^Gannett +nextgearcapital.com^CoxEnterprises +route.com^Route +scrippsnetworks.com^E.W. Scripps Company +beaconjournal.com^Gannett +premiomultishow.com.br^GrupoGlobo +nwfdailynews.com^Gannett +lazlogistics.sg^AlibabaGroup +doubtdrawer.com^Admiral +mocortech.com^mocortech.com +intercom.io^Intercom +telemundo51.com^Comcast +airbnb.me^Airbnb +movableink.com^MoveableInk +experian.nl^Experian +inmar.com^Inmar +desirebucket.com^Admiral +atompark.com^AtomPark +burytimes.co.uk^Gannett +edrone.me^edrone +duube1y6ojsji.cloudfront.net^duube1y6ojsji.cloudfront.net +hearst.co.uk^Hearst +cantondailyledger.com^Gannett +crimeandinvestigation.co.uk^Hearst +localdigitalkit.com^Vocento +paypal.me^Paypal +chardandilminsternews.co.uk^Gannett +motortalk.net^eBay +universalorlando.com^Comcast +wcvb.com^Hearst +noiselessplough.com^Admiral +alipay.com^AlibabaGroup +zynxhealth.com^Hearst +chesterstandard.co.uk^Gannett +media-amazon.com^Amazon +tampabay66.com^E.W. Scripps Company +chieftain.com^Gannett +aulogirefaure.com^aulogirefaure.com +aberdeennews.com^Gannett +mumbaiindians.com^Reliance +videobreakdown.com^Microsoft +courierpostonline.com^Gannett +homestyler.com^AlibabaGroup +exampleshake.com^Admiral +cravenherald.co.uk^Gannett +fiftyt.com^FiftyTechnologyLimited +stackla.com^Nosto +oddschecker.com^Oddschecker +mcg.com^Hearst +giallotv.it^Warner Bros. Discovery +delawareonline.com^Gannett +samplicio.us^Cint +xumo.com^Comcast +dissmercury.co.uk^Gannett +retailrocket.net^RetailRocket +dnj.com^Gannett +visitor-analytics.io^The Website Intelligence Platform +dumbartonreporter.co.uk^Gannett +ellwoodcityledger.com^Gannett +trustdecision.com^TrustDecision +elle.com^Hearst +adcell.de^FirstLead +strivesidewalk.com^Admiral +eppingforestguardian.co.uk^Gannett +onmarketer.net^Novaon Tech +first-id.fr^FirstID +eveningnews24.co.uk^Gannett +10web.io^10Web +ai.dialexa.com^IBM +mastercard.cz^Mastercard +sloughobserver.co.uk^Gannett +eveningtribune.com^Gannett +ubembed.com^Unbounce +mkt9430.com^Acoustic +gritosreais.com.br^GrupoGlobo +eveshamjournal.co.uk^Gannett +examiner-enterprise.com^Gannett +prvc.io^prvc.io +penarthtimes.co.uk^Gannett +sgr.net.br^GrupoGlobo +smarketer.de^Smarketer +turnto23.com^E.W. Scripps Company +exmouthjournal.co.uk^Gannett +relx.com^RELX +stay22.com^Stay22 +readingchronicle.co.uk^Gannett +fdlreporter.com^Gannett +byteplus.com^Bytedance +d38xvr37kwwhcm.cloudfront.net^d38xvr37kwwhcm.cloudfront.net +gainesville.com^Gannett +jetskiscovers.com^Admiral +mcwconsultancy.com^MCW Consulting +mkt9942.com^Acoustic +js7k.com^Yahoo! +webex.ai^Cisco +andoveradvertiser.co.uk^Gannett +westerntelegraph.co.uk^Gannett +withairbnb.com^Airbnb +glasgowtimes.co.uk^Gannett +greenwichtime.com^Hearst +convertkit-mail6.com^ConvertKit +metaenterprise.com^Meta +omg.com^Omnicom Group +wandz.ai^Wandz.ai +permutive.app^Permutive +tremorinternational.com^Nexxen +wpvip.com^Automattic +burgosconecta.es^Vocento +goerie.com^Gannett +yougreencolumn.com^CHEQ +mastercard.co.nz^Mastercard +mkt3798.com^Acoustic +clarionledger.com^Gannett +mkt71.net^Acoustic +i-mobile.co.jp^IMobileCoLtd +footprintdns.com^Microsoft +mkt4463.com^Acoustic +riamiavid.com^riamiavid.com +delightful.com^Match Group +guardian-series.co.uk^Gannett +polarcdn-pentos.com^Nova +mastercard.ch^Mastercard +ellechina.com^Hearst +mkt6882.com^Acoustic +poughkeepsiejournal.com^Gannett +desmoinesregister.com^Gannett +fitchlearning.com^Hearst +sharpspring.com^SharpSpring +hackneygazette.co.uk^Gannett +halesowennews.co.uk^Gannett +wordpress.com^Automattic +hampshirechronicle.co.uk^Gannett +acblnk.com^Acumbamail +sonynetwork.co.jp^Sony +reliancejewels.com^Reliance +greatfallstribune.com^Gannett +giants.com^NFL +sibautomation.com^Brevo +universalstudioshollywood.com^Comcast +shinypond.com^Admiral +helensburghadvertiser.co.uk^Gannett +browser-intake-datadoghq.com^DataDog +sony.com^Sony +d27xr6oh14aaqn.cloudfront.net^d27xr6oh14aaqn.cloudfront.net +heraldmailmedia.com^Gannett +btttag.com^BlueTriangle +ihuiwa.com^AlibabaGroup +thetakeout.com^Static Media +brainlyads.com^NextMillennium +mastercard.me^Mastercard +heraldscotland.com^Gannett +ads6-adnow.com^Adnow +bnbstatic.com^Binance +flyde.io^Flyde +tableau.com^Salesforce +inrix.com^Inrix +heraldtimesonline.com^Gannett +hertsad.co.uk^Gannett +hybrid.ai^HybridAI +audienceproject.com^AudienceProject +trendemon.com^Trendemon +hexham-courant.co.uk^Gannett +thenewsstar.com^Gannett +mailfoogae.appspot.com^Streak +walesfarmer.co.uk^Gannett +greenbaypressgazette.com^Gannett +wandsworthguardian.co.uk^Gannett +mkt4158.com^Acoustic +voxmedia.com^Vox Media +goldstudies.com^Admiral +luckylabs.io^Parka Solutions +salina.com^Gannett +ilkleygazette.co.uk^Gannett +cloudflarestatus.com^Cloudflare +lx.com^Comcast +in-cumbria.com^Gannett +netsertive.com^Netsertive +onlineathens.com^Gannett +hollandsentinel.com^Gannett +mobapay.com^Bytedance +forwardtomyfriend.com^CampaignMonitor +jacksonsun.com^Gannett +yandex.lv^Yandex +redeglobo.com.br^GrupoGlobo +vidoomy.com^Vidoomy +netacad.com^Cisco +twik.io^Twik +kidderminstershuttle.co.uk^Gannett +convertkit-mail5.com^ConvertKit +northwaleschronicle.co.uk^Gannett +wordfly.com^WordFly +browsi.com^Browsi +lancashiretelegraph.co.uk^Gannett +lcsun-news.com^Gannett +leaderlive.co.uk^Gannett +seon.io^Seon +meltwater.com^MeltWater +lohud.com^Gannett +lowestoftjournal.co.uk^Gannett +cdn4dd.com^DoorDash +buccaneers.com^NFL +wkbw.com^E.W. Scripps Company +lytics.io^Contentstack +cirrusinsight.com^CirrusInsight +abtasty.com^ABTasty +clickagy.com^ZoomInfo +maldonandburnhamstandard.co.uk^Gannett +airbnb.cl^Airbnb +sthelensstar.co.uk^Gannett +mansfieldnewsjournal.com^Gannett +salbraddrepilly.com^horonstogly.com +mmcdn.com^mmcdn.com +linkvertise.com^Linkvertise +indystar.com^Gannett +gadsdentimes.com^Gannett +luxuryretreats.com^Airbnb +sheboyganpress.com^Gannett +mkt8345.com^Acoustic +cdn1cloudflare.xyz^cdn1cloudflare.xyz +midweekherald.co.uk^Gannett +microsoft.ch^Microsoft +montgomeryadvertiser.com^Gannett +boldbars.com^Admiral +cainiao.com^AlibabaGroup +mailcamp.net.pl^MailTracker +infusionsoft.com^Keap +naplesnews.com^Gannett +operationchicken.com^Admiral +km0trk.com^km0trk.com +ourtime.com^Match Group +redbookmag.com^Hearst +vericast.com^Vericast +loveandseek.com^Match Group +news-leader.com^Gannett +halsteadgazette.co.uk^Gannett +axon.ai^Applovin +optidigital.com^optidigital +audigent.com^Audigent +newsandstar.co.uk^Gannett +paypal-information.com^Paypal +viralhosts.com^ViralHosts +newsherald.com^Gannett +dreamsdome.com^Admiral +newsquest.co.uk^Gannett +visually.io^Visually +njherald.com^Gannett +mycentraljersey.com^Gannett +somberscarecrow.com^Admiral +bevycommerce.com^BevyCommerce +shixiseng.com^Shixiseng +northwalespioneer.co.uk^Gannett +jiguang.cn^AuroraMobile +trustpilot.com^TrustPilot +nwemail.co.uk^Gannett +preciso.net^Preciso +burlingtonfreepress.com^Gannett +pulselive.com^Sony +sail-horizon.com^SailThru +webtrends-optimize.com^Webtrends Optimize +bestproducts.com^Hearst +digilant.com^Digilant +autopilotmail.io^AutoPilot +turktelekom.com.tr^TurkTelekom +poconorecord.com^Gannett +rlets.com^Gannett +cakeagenda.com^Admiral +mrktmtrcs.net^Market Metrics +wisernd.com^Wise R&D +possibleboats.com^Admiral +press-citizen.com^Gannett +providencejournal.com^Gannett +voraciousgrip.com^Admiral +carrickherald.com^Gannett +ksearchnet.com^Klevu +columbiadailyherald.com^Gannett +abc.es^Vocento +kgun9.com^E.W. Scripps Company +withflowersea.com^CHEQ +ragbrai.com^Gannett +webex.com^Cisco +brandmetrics.com^BrandMetrics +indiamatch.com^Match Group +gorgeousedge.com^Admiral +mastercard.com.my^Mastercard +amadeus-hospitality.com^Amadeus +sportyforum.com^Admiral +savannahnow.com^Gannett +shreveporttimes.com^Gannett +adpeppergroup.com^ad pepper group +justpickaname.com^Admiral +elleshop.com.tw^Hearst +paypal.com.tw^Paypal +ncadvertiser.com^Hearst +forter.com^Forter +bloblohub.com^bloblohub.com +cmail10.com^CampaignMonitor +starnewsonline.com^Gannett +dorsetecho.co.uk^Gannett +absorbingband.com^Admiral +airbnb.cz^Airbnb +dynamics.asia^Microsoft +coxautoinc.com^CoxEnterprises +advangelists.com^Advangelists +townsquare.media^Townsquare Media +despegar.com.mx^Prosus +floridatoday.com^Gannett +nbcstore.com^Comcast +thedailyreporter.com^Gannett +fancyactivity.com^Admiral +kakaowork.com^Kakao +thisiswiltshire.co.uk^Gannett +globo.com^GrupoGlobo +panthers.com^NFL +valorinternational.com.br^GrupoGlobo +coatfood.com^Admiral +pushly.com^Pushly +tallahassee.com^Gannett +akamaihd.net^Akamai +mastercardconnect.com^Mastercard +mor-tv.com^Hearst +theboltonnews.co.uk^Gannett +thecomet.net^Gannett +americanexpress.com^American Express +juiceblocks.com^Admiral +smartsendy.com^SmartSendy +amsive.com^Amsive +campaignseries.co.uk^Gannett +experianplc.com^Experian +paypal.com.mx^Paypal +paypal-globalshops.com^Paypal +icptrack.com^ZiffDavis +dynamics365.mx^Microsoft +sportradarserving.com^SportRadar +airbnb.fi^Airbnb +thenorthwestern.com^Gannett +coloradoan.com^Gannett +stargazette.com^Gannett +clarity.ms^Microsoft +veggiepeoplemeet.com^Match Group +thetfordandbrandontimes.co.uk^Gannett +nitroscripts.com^NitroPack +thomastorch.com^Admiral +thisislocallondon.co.uk^Gannett +hsappstatic.net^HubSpot +barrheadnews.com^Gannett +thetottenhamindependent.co.uk^Gannett +skilledview.com^Admiral +shallowblade.com^Admiral +times-series.co.uk^Gannett +matomo.org^InnoCraft +dudleynews.co.uk^Gannett +united-internet.de^UnitedInternet +attraxcdnprod1-freshed3dgayb7c3.z01.azurefd.net^attraxcdnprod1-freshed3dgayb7c3.z01.azurefd.net +ilfordrecorder.co.uk^Gannett +getlasso.co^Lasso +kijijiautos.ca^eBay +ezoic.net^Ezoic +gama.globo^GrupoGlobo +welife.es^Vocento +circlelevel.com^Admiral +azion.net^Azion +inputobjects.eu^Input Objects +tolunacorporate.com^Toluna +vegas34.com^E.W. Scripps Company +pelmorex.com^Pelmorex +kream.co.kr^Naver +zprk.io^zprk.io +vcstar.com^Gannett +sail-personalize.com^SailThru +genxpeoplemeet.com^Match Group +visaliatimesdelta.com^Gannett +vvdailypress.com^Gannett +tmall.ru^AlibabaGroup +watfordobserver.co.uk^Gannett +wattonandswaffhamtimes.co.uk^Gannett +mastercard.es^Mastercard +quill.run^quill.run +chiefs.com^NFL +createwithnova.com^Nova +cloudflarestream.com^Cloudflare +mkt9775.com^Acoustic +phillyburbs.com^Gannett +ads1-adnow.com^Adnow +cmcsa.com^Comcast +qualified.com^Qualified +fabcharting.com^Admiral +mkt5297.com^Acoustic +aseasky.link^CHEQ +wisconsinrapidstribune.com^Gannett +anyclip.com^AnyClip +southwestfarmer.co.uk^Gannett +d1vg5xiq7qffdj.cloudfront.net^d1vg5xiq7qffdj.cloudfront.net +affle.com^Affle +geniusmonkey.com^GeniusMonkey +jwpconnatix.com^JWP Connatix +grandfatherguitar.com^Admiral +paypalbenefits.com^Paypal +unmectappic.com^unmectappic.com +geniuslink.com^Geniuslink +geoedge.be^Geoedge +wbaltv.com^Hearst +lessonsnetwork.com^Admiral +paypal-danmark.dk^Paypal +baffinbay.com^Mastercard +reliancefoundation.org^Reliance +glassbox.com^GlassBox +webtoonscorp.com^Naver +afternic.com^Go Daddy +marionstar.com^Gannett +spectacularstamp.com^Admiral +mailtrack.io^MailTrack +herbstarsbuilding.com^CHEQ +tennesseetitans.com^NFL +shareablee.com^comScore +createsend7.com^CampaignMonitor +dan.com^Go Daddy +underdog.media^Underdog Media +2449march2024.com^horonstogly.com +azion.app^Azion +amazon.co.za^Amazon +despegar.com.do^Prosus +peacocktv.com^Comcast +ctinsider.com^Hearst +microsoft.io^Microsoft +kristv.com^E.W. Scripps Company +fewkittens.com^Admiral +theledger.com^Gannett +crowdsignal.com^Automattic +jivosite.com^JivoChat +pagely.com^Go Daddy +trg.de^TheReachGroup +yahoosmallbusiness.com^Yahoo! +moontontech.com^Bytedance +al-adtech.com^al-adtech.com +dynamics365.nz^Microsoft +the-review.com^Gannett +sendiio.vip^Sendiio +poynt.com^Go Daddy +substack.com^Substack +theridgefieldpress.com^Hearst +catiuribripent.com^catiuribripent.com +skyverge.com^Go Daddy +digiseg.net^Digiseg +kbb.com.br^CoxEnterprises +truste-svc.net^TrustARC +suggestionbridge.com^Admiral +openwidget.com^Text +chesscolor.com^Admiral +on.aws^Amazon +evgnet.com^Salesforce +interdogmedia.com^InterdogMedia +llama.com^Meta +chelmsfordweeklynews.co.uk^Gannett +teracent.com^Google +ytimg.com^Google +ytsa.net^Google +trackedweb.net^Dotdigital +classificadosdorio.com.br^GrupoGlobo +publicidadeeditoraglobo.com.br^GrupoGlobo +mkt81.net^Acoustic +baidu.com.hk^Baidu +liveramp.com.au^LiveRamp +pricklydebt.com^Admiral +hscollectedforms.net^HubSpot +3newsnow.com^E.W. Scripps Company +yofi.ai^Yofi +mkt5566.com^Acoustic +hamhigh.co.uk^Gannett +democratandchronicle.com^Gannett +impactcdn.com^Impact +hospitablehall.com^Admiral +mastercard.ro^Mastercard +cookielaw.org^OneTrust +sunadnetwork.com^SunAdNetwork +searchanise.io^Bolide +fuseplatform.net^fuseplatform.net +festivalled.com.br^GrupoGlobo +globoi.com^GrupoGlobo +zucks.net^CartaMarketing +globonocinema.com.br^GrupoGlobo +mkt1365.com^Acoustic +cdn-path.com^cdn-path.com +gosanangelo.com^Gannett +globotechnologies.globo^GrupoGlobo +apxl.io^Apxl.io +hs-scripts.com^HubSpot +skynewsinternational.com^Comcast +experian.com.tr^Experian +infoglobo.com.br^GrupoGlobo +hololensevents.com^Microsoft +yandex.ee^Yandex +litmus.com^Litmus +gasv1.com^GreenArrow +pjatr.com^Partnerize +summit.co.uk^Summit +memoriaglobo.com.br^GrupoGlobo +netnews2.com.br^GrupoGlobo +ntr.com.br^GrupoGlobo +cmail19.com^CampaignMonitor +intergient.com^Playwire +scarabresearch.com^SAP +vevorstatic.com^VEVOR +hogarhgtv.com^Warner Bros. Discovery +history.co.uk^Hearst +vic-m.co^VicinityMedia +newschannel5.com^E.W. Scripps Company +alibaba.com^AlibabaGroup +mastercard.co.jp^Mastercard +roundprinceweb.com^CHEQ +dynamics365businesscentral.ca^Microsoft +boldcommerce.com^BoldCommerce +simpleanalytics.com^SimpleAnalytics +radiogloborio.com.br^GrupoGlobo +genesys.com^Genesys +gears.gg^Microsoft +ardrossanherald.com^Gannett +riogastronomia.com^GrupoGlobo +thepublicopinion.com^Gannett +s13emagst.akamaized.net^eMAG +visarity.com^Visarity +tuscaloosanews.com^Gannett +overcode.bg^Overcode +goup.ai^RideTechnology Global +hoteltonight.com^Airbnb +sinaldigitalminas.com.br^GrupoGlobo +m3651.net^Mail365 +verve.com^VerveGroup +kameleoon.io^Kameleoon +somosumasoglobo.com^GrupoGlobo +marriagemindedpeoplemeet.com^Match Group +sparkloop.app^SparkLoop +techtudo.com.br^GrupoGlobo +wortindely.com^wortindely.com +onshop.asia^Novaon Tech +magiceden.dev^Magic Eden +assemblyglobal.com^AssemblyGlobal +southwalesguardian.co.uk^Gannett +kakaoinvestment.com^Kakao +inpowered.ai^inPowered +microsoftedge.com^Microsoft +paypal.de^Paypal +liftdsp.com^LiftDSP +adalliance.io^AdAlliance +ufpcdn.com^AdCash +hashtag-labs.com^HashtagLabs +barracuda.com^Barracuda +freep.com^Gannett +htlbid.com^HashtagLabs +minutemedia-prebid.com^MinuteMedia +dynamics.com^Microsoft +ujet.co^UJET +mkt2478.com^Acoustic +experian.com.au^Experian +chinesepeoplemeet.com^Match Group +skype.net^Microsoft +fitchsolutions.com^Hearst +seattlepi.com^Hearst +opmnstr.com^Retyp +ad-delivery.net^AdDelivery +mailtracker.pl^MailTracker +98online.com^Hearst +tcpalm.com^Gannett +motorbasar.de^eBay +agreeabletouch.com^Admiral +eonline.com^Comcast +clubeoglobo.com.br^GrupoGlobo +darientimes.com^Hearst +skillfuldrop.com^Admiral +delish.com^Hearst +personalizer.io^Limespot +taptapdigital.com^TaptapDigital +atmeta.com^Meta +aviasales.ru^Giant Travel Unicorn Two +packers.com^NFL +experian.ae^Experian +digitalspy.com^Hearst +royston-crow.co.uk^Gannett +paypal.at^Paypal +ellemen.com^Hearst +vevor.com.au^VEVOR +asianimage.co.uk^Gannett +upward-app.com^Match Group +housebeautiful.com^Hearst +hao123.com^Baidu +pingidentity.com^Ping Identity +esquire.com^Hearst +smartnews.com^SmartNews +p-n.io^Pushly +centralfifetimes.com^Gannett +snapwidget.com^SnapWidget +divorcedpeoplemeet.com^Match Group +rt-pixel.com^rt-pixel.com +zyngagames.com^Take-Two +stretchsneeze.com^Admiral +opulentsylvan.com^Admiral +ellegirl.jp^Hearst +fitch.group^Hearst +adxbid.info^adxbid +yandex.md^Yandex +ipregistry.co^IPregistry +impactradius-go.com^Impact +amazon.se^Amazon +joinground.com^Ground +messengernewspapers.co.uk^Gannett +programattik.com^TurkTelekom +sendtonews.com^MinuteMedia +aws.dev^Amazon +jsrdn.com^DistroScale +confiant-integrations.net^Confiant +espssl.com^Listrak +seroundprince.com^CHEQ +vistaprint.ch^Cimpress +goodhousekeeping.com^Hearst +alipay.cn^AlibabaGroup +cameraprive.com^OnCam +splunk.com^Cisco +uphe.com^Comcast +mediavine.com^Mediavine +m3652.net^Mail365 +cumnockchronicle.com^Gannett +hearstdms.com^Hearst +staugustine.com^Gannett +nbcchicago.com^Comcast +scripps.com^E.W. Scripps Company +hearstranch.com^Hearst +detectdiscovery.com^Admiral +hotrod.com^Hearst +reporternews.com^Gannett +hearst360.com^Hearst +asepourioter.com^asepourioter.com +golfnow.com^Comcast +tracking.friends2follow.com^Friends2Follow +mailbutler.io^MailButler +navercorp.com^Naver +nytrng.com^Voltn +thedigestibledynamicspodcast.com^Microsoft +kshb.com^E.W. Scripps Company +middletownpress.com^Hearst +sagemaker.aws^Amazon +milfordmirror.com^Hearst +boiledegglabs.com^Admiral +modernliving.jp^Hearst +venmo-experience.com^Paypal +motor.com^Hearst +othersides.top^othersides.top +frontapp.com^Front +azcardinals.com^NFL +emaillabs.io^EmailLabs +wdsu.com^Hearst +mrt.com^Hearst +myjournalcourier.com^Hearst +googleoptimize.com^Google +pal-item.com^Gannett +paypalobjects.com^Paypal +outrch.com^Outreach +infillion.com^Infillion +dynamics365.eu^Microsoft +email81.com^GetNotify +airbnb.ch^Airbnb +segreencolumn.com^CHEQ +imachines.com^IntuitionMachines +curv.co^Paypal +163.com^Netease +new-innov.com^Hearst +ealingtimes.co.uk^Gannett +nativery.com^Nativery +vevor.pl^VEVOR +line-scdn.net^Naver +ad2iction.com^TNL Mediagene +checkout.com^Checkout +paypal.nl^Paypal +damagedadvice.com^Admiral +coxenterprises.com^CoxEnterprises +audiencemanager.de^NanoInteractive +newsroom.bi^Marfeel +browsiprod.com^Browsi +salveaweb.com^GrupoGlobo +ourmidland.com^Hearst +myshopline.com^Shopline +paypal.eu^Paypal +five9.com^Five9 +ebayimg.com^eBay +dunmowbroadcast.co.uk^Gannett +popeye.com^Hearst +paypal.com.tr^Paypal +mkt5224.com^Acoustic +shallowart.com^Admiral +notify-group.com^NotifyGroup +uuidksinc.net^KadamAdvertising +buttondown.email^ButtonDown +roadandtrack.com^Hearst +enterprisenews.com^Gannett +sixworks.net^IBM +runnersworld.com^Hearst +reporter-times.com^Gannett +theintelligencer.com^Hearst +sundaysky.com^SundaySky +iab.com^IAB +lazada.com^AlibabaGroup +hearstsustainability2024.com^Hearst +pintereststatus.com^Pinterest +netmedshealthcare.com^Reliance +patriotledger.com^Gannett +beop.io^BeOp +cmail7.com^CampaignMonitor +twilio.com^Twilio +git.dev^Atlassian +meta.com^Meta +timesandstar.co.uk^Gannett +totalfbo.com^Hearst +nebulousgarden.com^Admiral +hashicorp.com^IBM +vividmeadow.com^Admiral +digocdn.com^Sem, Seo and More Online Marketing +paypal-mena.com^Paypal +virtualminds.de^VirtualMinds +pristinegale.com^Admiral +edge.ms^Microsoft +ladsp.com^So-netMediaNetworks +my-email-signature.link^EmailTrackerWebsite +calltrackingmetrics.com^CallTrackingMetrics +lscmarketinggroup.com^LSC Digital +democraticpeoplemeet.com^Match Group +worldrealize.com^Admiral +sooeveningnews.com^Gannett +paypal.co.il^Paypal +dynamics365.vn^Microsoft +gnezdo.online^Gnezdo +chatbot.com^Text +wlky.com^Hearst +curoax.com^curoax.com +cookieless-data.com^SirData +spideraf.com^Spider Labs +limelight.inc^LimelightInc +azurefd.net^Microsoft +womenshealth-jp.com^Hearst +paypal.com.hk^Paypal +wtae.com^Hearst +swtimes.com^Gannett +kakaopay.com^Kakao +fandango.com^Comcast +oribi.io^Microsoft +worcesternews.co.uk^Gannett +mastercard.com.sg^Mastercard +motortrend.com^Hearst +vinc.fr^Vinc +salesforce-sites.com^Salesforce +wvtm13.com^Hearst +cotswoldjournal.co.uk^Gannett +freewheel.com^Comcast +vevor.fr^VEVOR +wxii12.com^Hearst +mkt7972.com^Acoustic +helpscout.com^HelpScout +robustintelligence.com^Cisco +sddan.com^SirData +airbnb.it^Airbnb +pagesense.io^Zoho +salesloftlinks.com^Salesloft +alibabacloud.com^AlibabaGroup +datamind.ru^DataMind.ru +parklogic.com^ParkLogic +mkt7234.com^Acoustic +clearbitjs.com^HubSpot +yahoo.net^Yahoo! +mkt7842.com^Acoustic +mkt8043.com^Acoustic +smadex.com^Entravision +hatena.ne.jp^Hatena +mastercard.com.tr^Mastercard +eldiariomontanes.es^Vocento +hsms06.com^HubSpot +times-gazette.com^Gannett +lunamedia.io^LunaMedia +dockdigestion.com^Admiral +aunstollarinets.com^aunstollarinets.com +rabbitrifle.com^Admiral +bentonow.com^Bento +cmail25.com^CampaignMonitor +telemundo31.com^Comcast +aboutplatform.com^Hearst +dayoneapp.com^Automattic +paypal-turkiye.com^Paypal +alocdn.com^MediaMath +mastercard.pl^Mastercard +permodo.com^Permodo +alibabapictures.com^AlibabaGroup +px-cloud.net^HumanSecurity +subseacare.com^Admiral +fin-ncloud.com^Naver +nmgassets.com^nmgassets.com +dynamics365.ru^Microsoft +urbanlaurel.com^Admiral +vanarsdel.msedgedemo.example^VanArsdel +sheltonherald.com^Hearst +7seasky.com^CHEQ +riotgames.com^Tencent +hybridtheory.com^HybridTheory +businessofgovernment.org^IBM +hazmatworkshop.com^Admiral +fitchratings.com^Hearst +carbondesignsystem.com^IBM +risecodes.com^Unity +discoveryplus.co.uk^Warner Bros. Discovery +listenlayer.com^ListenLayer +convertlanguage.com^convertlanguage.com +heraldtribune.com^Gannett +m156b.com^m156b.com +dhlexpresscommerce.com^Deutsche Post DHL +gemlithium.com^Admiral +datastax.com^IBM +azerion.com^Azerion +borehamwoodtimes.co.uk^Gannett +dktechin.com^Kakao +scribblestring.com^Admiral +b2c.com^Marketing Science +advertising-tracker.contoso.example^Contoso +mkt6688.com^Acoustic +kevel.com^Kevel +tagtoo.co^Tagtoo +affilae.com^NETILUM +neudesic.com^IBM +mastercard.rs^Mastercard +dfsdk.com^Seon +warmquiver.com^Admiral +rangergustav.com^Admiral +p7cloud.net^p7cloud.net +pisos.com^Vocento +postcrescent.com^Gannett +adman.gr^Adman +wapt.com^Hearst +megpxs.com^megpxs.com +sky.com^Comcast +marketingarchitects.com^MarketingArchitects +lazlogistics.ph^AlibabaGroup +pubstack.io^Pubstack +instana.io^IBM +icfcdn.com^ICF Technology +salesloft.com^Salesloft +htrnews.com^Gannett +milhoesdepossibilidades.globo^GrupoGlobo +nbcmiami.com^Comcast +scenestealer.co.uk^SceneStealer +iocnt.net^INFOnline +exdynsrv.com^ExoClick +salesforceiq.com^Salesforce +hushly.com^LeadTip +medallia.com^Medallia +testgitcode.sbs^Atlassian +countypress.co.uk^Gannett +cashpassport.com.au^Mastercard +spot.im^OpenWeb +admd.ink^Botman Networks +reply.io^Reply +dynamics365.cz^Microsoft +eastlondonadvertiser.co.uk^Gannett +digitaleast.mobi^DigitalEast +wiltsglosstandard.co.uk^Gannett +gorgias.com^Gorgias +idealmedia.io^Ideal Media +lightboxcdn.com^Digioh +truffle.bid^Truffle +invocacdn.com^Invoca +paypal.com.sa^Paypal +statesmanjournal.com^Gannett +pxf.io^Impact +accelalpha.com^IBM +tendertest.com^Admiral +roposo.com^InMobi +adentifi.com^AdTheorent +doyouad.com^Wise R&D +wisej1355.com^wisej1355.com +contentexchange.me^ContentExchange +screechingstocking.com^Admiral +cartfulsolutions.com^Cartful +buyindiaonline.com^Paypal +nsure.ai^nSure.ai +northernfarmer.co.uk^Gannett +j189eb.com^j189eb.com +new-programmatic.com^Target RTB +nylas.com^Nylas +bidtheatre.com^BidTheatre +e-mail-servers.com^DidTheyReadIt +benovel.com^Novel +sproutingbag.com^Admiral +songsterritory.com^Admiral +smugmug.com^SmugMug +asksuite.com^Asksuite +jewelml.com^Jewel ML +adxcel-ec2.com^ArtsAI +indexww.com^IndexExchange +cquotient.com^Salesforce +wcpo.com^E.W. Scripps Company +globomais.com.br^GrupoGlobo +coxbusiness.com^CoxEnterprises +telemundoareadelabahia.com^Comcast +grocerycrew.com^Admiral +infinity.co^Infinity +convertexperiments.com^convertexperiments.com +shoplineapp.com^Shopline +matomo.cloud^InnoCraft +hodes.com^SymphonyTalent +mastercard.com.cn^Mastercard +cohesionapps.com^cohesionapps.com +automobile.fr^eBay +trumbulltimes.com^Hearst +innovid.com^Innovid +visually-io.com^Visually +intercom.com^Intercom +telemundonuevomexico.com^Comcast +stourbridgenews.co.uk^Gannett +lazada.jp^AlibabaGroup +sentrymagic.com^Admiral +pubnub.com^PubNub +dynamics365.se^Microsoft +hunter.io^Hunter +lazada-seller.cn^AlibabaGroup +hsprotect.net^hsprotect.net +juicingoasis.com^Admiral +ixactcontact.com^IxactContact +aboardamusement.com^Admiral +mailtag.io^MailTag +mkt2724.com^Acoustic +vrtcal.com^vrtcal +jwpcdn.com^JWP Connatix +thenewco.tech^TheNewCo +video-cdn.net^video-cdn.net +livechatinc.com^Text +blushingbread.com^Admiral +prposting.com^PRPosting +jewelryforest.com^Admiral +clean.gg^HumanSecurity +condemnedcomb.com^Admiral +newhamrecorder.co.uk^Gannett +taptapnetworks.com^TaptapDigital +goallbest.com^goallbest.com +juicyscore.ai^JuicyScore +droitwichadvertiser.co.uk^Gannett +americanexpress.ch^American Express +offshoregeology.com^Admiral +seacoastonline.com^Gannett +thepaypalblog.com^Paypal +realizerecess.com^Admiral +fqtag.com^Impact +oneplus.com^OnePlus +udzpel.com^udzpel.com +juicyscore.online^JuicyScore +daraz.com.np^AlibabaGroup +today.com^Comcast +namastedharma.com^namastedharma.com +airbnb.lt^Airbnb +dailymotionadvertising.com^DailyMotion +hyperku.com^HyperKu +7ool.net^7ool.net +mediawallahscript.com^Mediawallah +hearst.co.jp^Hearst +avito.st^KEKH EKommerts +tvsquared.com^Innovid +modelscope.cn^AlibabaGroup +smartclip.tv^SmartClip +nfl.net^NFL +kakaobank.com^Kakao +unknownidea.com^Admiral +kakao.com^Kakao +countryliving.com^Hearst +nhlnka.com^NetHunt +sportsengine.com^Comcast +bridportnews.co.uk^Gannett +yandex.co.il^Yandex +kakaoenterprise.com^Kakao +mastercard.co.ve^Mastercard +americanexpress.ae^American Express +discoveryenespanol.com^Warner Bros. Discovery +timesreporter.com^Gannett +x.com^Twitter +zoho.com^Zoho +expressnews.com^Hearst +modularmental.com^Admiral +fitgroup.com^Tencent +shop101.com^InMobi +sendpul.se^SendPulse +oceandrive.studio^Kakao +pastahealth.com^Kakao +system-notify.app^system-notify.app +mkt8267.com^Acoustic +hackerrank.com^Hacker Rank +emplifi.io^Emplifi +daumcdn.net^Kakao +unaccountablepie.com^Admiral +aliexpress.ge^AlibabaGroup +clactonandfrintongazette.co.uk^Gannett +close.com^Close +msfttransform.ca^Microsoft +boingtv.it^Warner Bros. Discovery +keytiles.com^Keytiles +shein.com.vn^Shein +thenorthernecho.co.uk^Gannett +repeatsweater.com^Admiral +mkt7596.com^Acoustic +bracknellnews.co.uk^Gannett +klevu.com^Klevu +adaptmx.com^AdaptMX +trtc.io^Tencent +singleparentmeet.com^Match Group +d2startup.com^Naver +larioja.com^Vocento +knorex.com^Knorex +singular.net^SingularLabs +krushmedia.com^KrushMedia +luminousboulevard.com^Admiral +drainpaste.com^Admiral +adaraanalytics.com^RateGain +paypal.se^Paypal +leadinfo.net^LeadInfo +golfdigest.com^Warner Bros. Discovery +nielseniq.com^NIQ +awswaf.com^Amazon +rakuten.es^Rakuten +zeppelinradio.com^Admiral +liftoff.io^Liftoff Mobile +adstradata.com^Adstra +ad-shot.net^ad-shot +yandex.tm^Yandex +liftoffintl.io^Liftoff Mobile +telemundodenver.com^Comcast +open-adsyield.com^LimelightInc +imweb.me^IWeb +newspack.com^Automattic +maillist-manage.com^Zoho +paypal-community.com^Paypal +limespot.com^Limespot +nexstardigital.com^NexstarDigital +netmeds.com^Reliance +rudderstack.com^RudderStack +invoca.com^Invoca +driftingchef.com^Admiral +floors.dev^Freestar +thoughtmetric.io^ThoughtMetric +emltrk.com^Litmus +cadent.tv^Cadent +paypal-passport.com^Paypal +privacymanager.io^LiveRamp +courier-journal.com^Gannett +amazon.sg^Amazon +airbnb.jp^Airbnb +nitropay.com^Overwolf +cmail23.com^CampaignMonitor +editoraglobonegocios.com.br^GrupoGlobo +oglobo.com^GrupoGlobo +paypal-business.com.au^Paypal +loopme.me^LoopMe +lunio.ai^Lunio +2k.com^Take-Two +catholicpeoplemeet.com^Match Group +jubna.com^DIGIMENA +coxautoinc.eu^CoxEnterprises +gsspat.jp^GENIEE +mgi-se.com^MGI +mpnnow.com^Gannett +127.net^Netease +protoroundprince.com^CHEQ +nbcconnecticut.com^Comcast +accenture.com^Accenture +vocento.com^Vocento +near.com^Near +kakaoicloud.com^Kakao +bitmovin.com^BitMovin +mgid.com^MGID +platform161.com^MGI +perfectfetch.com^Admiral +comcasttechnologysolutions.com^Comcast +d1af033869koo7.cloudfront.net^d1af033869koo7.cloudfront.net +elfsight.com^ElfSight +gardenguides.com^Static Media +hgtv.com^Warner Bros. Discovery +userreport.com^AudienceProject +sape.ru^Sape +lasso.link^Lasso +dynamics365.ch^Microsoft +magiceden.io^Magic Eden +kueez.com^Kueez +kissmetrics.io^Kissmetrics +figpii.com^FigPii +salamancahoy.es^Vocento +affirm.com^Affirm +impactradius-event.com^Impact +magiceden.us^Magic Eden +elledecor.com^Hearst +taobao.hk^AlibabaGroup +herbgreencolumn.com^CHEQ +zamcs.com^AlibabaGroup +user.com^User +mailcamp.nl^MailCamp +kakaopayinscorp.co.kr^Kakao +mastercard.com.ph^Mastercard +nwwais.com^nwwais.com +moatpixel.com^Oracle +upsun.com^Upsun +mkt10663.com^Acoustic +paypal.it^Paypal +trueanthem.com^TrueAnthem +macys.com^Macy's +corridor.aero^Hearst +lzd.co^AlibabaGroup +kxlh.com^E.W. Scripps Company +huadao.com.cn^Hearst +mkt7580.com^Acoustic +mapp.com^Mapp +experian.dk^Experian +marfeel.com^Marfeel +liveramp.fr^LiveRamp +heyaiii111iidsfsdbfjb132222ffco.xyz^heyaiii111iidsfsdbfjb132222ffco.xyz +the-metrics.com^Market Metrics +engineertrick.com^Admiral +wholituaten.com^wholituaten.com +bromsgroveadvertiser.co.uk^Gannett +sme.co.jp^Sony +marketiq.com^MarketOps +smartnews-ads.com^SmartNews +ethoca.com^Mastercard +igodigital.com^Salesforce +amestrib.com^Gannett +micpn.com^MoveableInk +heapanalytics.com^Heap +mastercard.cl^Mastercard +townsquaremedia.com^Townsquare Media +storageexplorer.com^Microsoft +mastercard.co.il^Mastercard +stevenspointjournal.com^Gannett +experian.no^Experian +mastercard.no^Mastercard +steelers.com^NFL +shopbybravo.com^Comcast +attentivemobile.com^Attentive +tncid.app^TheNewCo +windowsondevices.com^Microsoft +mastercard.ie^Mastercard +wandzcdn.com^Wandz.ai +jubilantwhisper.com^Admiral +stakingsmile.com^Admiral +2495may2024.com^horonstogly.com +thisisoxfordshire.co.uk^Gannett +yeahmobi.com^Yeahmobi +digestibledynamicspodcast.com^Microsoft +tagcommander.com^CommandersAct +dynamics365businesscentral.be^Microsoft +bringatrailer.com^Hearst +valorinvest.com.br^GrupoGlobo +yandex.de^Yandex +jetpack.com^Automattic +geistm.com^Geistm +nbcsports.com^Comcast +yandex.com.ge^Yandex +greencolumnhealth.com^CHEQ +mastercard.com.vn^Mastercard +mastercard.lu^Mastercard +pof.com^Match Group +wrestlinginc.com^Static Media +mastercard.nl^Mastercard +capecodtimes.com^Gannett +mastercard.it^Mastercard +riskrecon.com^Mastercard +dynamics365.dk^Microsoft +myvisualiq.net^Nielsen +woowup.com^WoowUp +detroitlions.com^NFL +oklahoman.com^Gannett +contentsquare.net^ContentSquare +shop.pe^SafeOpt +americanexpress.co.il^American Express +seznam.cz^Seznam +geetest.com^GeeTest +b112j.com^b112j.com +currentcollar.com^Admiral +rebelhen.com^Admiral +tail.digital^TOTVS +honor.com^Honor Device +adnxs-simple.com^Microsoft +hillsdale.net^Gannett +automatticstatus.com^Automattic +mastercard.uz^Mastercard +tewkesburyadmag.co.uk^Gannett +eurosport.com^Warner Bros. Discovery +topincome.cc^topincome.cc +thurrockgazette.co.uk^Gannett +mkt8369.com^Acoustic +rottentomatoes.com^Comcast +4029tv.com^Hearst +piwik.pro^CookieInformation +commandersact.com^CommandersAct +appupward.com^Match Group +astcorporation.com^IBM +beeperstatus.com^Automattic +nordcloud.com^IBM +blackchristianpeoplemeet.com^Match Group +mkt8064.com^Acoustic +tivysideadvertiser.co.uk^Gannett +knutsfordguardian.co.uk^Gannett +minutemedia.com^MinuteMedia +fujingaho.jp^Hearst +mydhli.com^Deutsche Post DHL +datadome.co^Datadome +wiredfestival.com.br^GrupoGlobo +adpartner.pro^adpartner.pro +dynamics365.com^Microsoft +stupendoussnow.com^Admiral +powerfulcopper.com^Admiral +sky.de^Comcast +kakao.ai^Kakao +blackprofessionalpeoplemeet.com^Match Group +tinypass.com^Piano +adtdp.com^CyberAgent +chispa-app.com^Match Group +hinge.co^Match Group +papayads.net^PapayAds +sonymusic.com^Sony +skygroup.sky^Comcast +brainnordic.com^BrainNordic +wtvr.com^E.W. Scripps Company +paypal-communications.com^Paypal +liveramp.org^LiveRamp +mkt9054.com^Acoustic +courierpress.com^Gannett +paypal-gifts.com^Paypal +peoplemeet.com^Match Group +republicanpeoplemeet.com^Match Group +sociumventures.com^CoxEnterprises +giftclothings.com^Admiral +2493may2024.com^horonstogly.com +creditkarma.co.uk^Intuit +ncaudienceexchange.com^NCAudienceExchange +stir.com^Match Group +southbendtribune.com^Gannett +saleshandy.com^SalesHandy +skysports.com^Comcast +meta.ai^Meta +geoip-js.com^MaxMind +ilsmart.com^Hearst +kakaovx.com^Kakao +warnermediacdn.com^Warner Bros. Discovery +irvinetimes.com^Gannett +simpleanalyticscdn.com^SimpleAnalytics +trackad.cz^R2B2 +thepowerstones.com^Admiral +cloud.microsoft^Microsoft +onesignal.com^OneSignal +matheranalytics.com^MatherEconomics +medallia.com.au^Medallia +bobabillydirect.org^bobabillydirect.org +disquscdn.com^Disqus +walmart.com^Walmart +vinid.net^Vingroup +audioeye.com^AudioEye +healthdigest.com^Static Media +jsdelivr.com^Volentio JSD +ldnews.com^Gannett +lpsnmedia.net^LivePerson +laverdad.es^Vocento +dmm.com^DMM +dynamics365.ae^Microsoft +cuteness.com^Static Media +affiliatly.com^Overcode +paypal-australia.com.au^Paypal +broadborder.com^Admiral +easyence.com^Mediarithmics +mastercard.fi^Mastercard +brevo.com^Brevo +origo.hu^Mediaworks +ispot.tv^iSpot +decide.co^Decide +mastercard.ca^Mastercard +skyaccessibility.sky^Comcast +6sc.co^6sense +mastercard.co.th^Mastercard +utarget.pro^UTarget +thediffpodcast.com^Meta +segment.com^Twilio +slackdemo.com^Salesforce +yorkpress.co.uk^Gannett +cdninstagram.com^Meta +priceypies.com^Admiral +newfold.com^NewfoldDigital +send24.pl^Redlink +smi2.ru^SMI2 +bingplaces.com^Microsoft +businesscentral.be^Microsoft +kubra.com^Hearst +macysbackstage.com^Macy's +gazetteandherald.co.uk^Gannett +ocala.com^Gannett +paypal.com.ar^Paypal +perfdrive.com^Radware +resetdigital.co^ResetDigital +horonstogly.com^horonstogly.com +rampedup.us^LiveRamp +atomex.net^Affle +kloudend.com^Kloudend +stomachscience.com^Admiral +businesscentral.us^Microsoft +dailyworld.com^Gannett +addtoany.com^AddtoAny +d3dn269ayoh5p6.cloudfront.net^d3dn269ayoh5p6.cloudfront.net +wunderkind.co^Wunderkind +dynamics365.pt^Microsoft +timesunion.com^Hearst +valuecommerce.com^ValueCommerce +bidmind.com^BidMind +dbankly.com^dbankly.com +kingfeatures.com^Hearst +upravel.com^Upravel +clydebankpost.co.uk^Gannett +businesscentral.ch^Microsoft +1weatherapp.com^InMobi +link.com^Stripe +themoneytizer.com^Azerion +dynamics.eu^Microsoft +vevor.it^VEVOR +nflgsis.com^NFL +viafoura.com^Viafoura +mkt6031.com^Acoustic +zdassets.com^Zendesk +pocketfaucet.com^Admiral +nbcumv.com^Comcast +voltn.com^Voltn +51yes.com^51yes +securedvisit.com^Dentsu +dynamics365.at^Microsoft +acredo.space^acredo.space +greenocktelegraph.co.uk^Gannett +soundestlink.com^Omnisend +t13.io^t13.io +dynamics365.ec^Microsoft +nanointeractive.com^NanoInteractive +dynamics365.fr^Microsoft +dynamics365.hk^Microsoft +mkt5379.com^Acoustic +dynamics365.it^Microsoft +dynamics365.lt^Microsoft +bestofluck.io^bestofluck.io +connectif.ai^ConnectIf +dynamics365.ro^Microsoft +witneygazette.co.uk^Gannett +gumtree.sg^eBay +drollwharf.com^Admiral +fsxinsider.com^Microsoft +wtxl.com^E.W. Scripps Company +pairs.lv^Match Group +bluetab.net^IBM +joystiq.com^Yahoo! +lnkd.in^Microsoft +puzzmo.com^Hearst +autoweek.com^Hearst +hrcdn.net^Hacker Rank +nsm-corp.com^PlayD +adara.com^RateGain +zbaseglobal.com^zbaseglobal.com +satisfycork.com^Admiral +vscode.dev^Microsoft +createsend13.com^CampaignMonitor +windowsforiotdevices.com^Microsoft +threads.net^Meta +amap.com^AlibabaGroup +onfinance.asia^Novaon Tech +e491328.com^e491328.com +ebayadservices.com^eBay +yango.com^RideTechnology Global +journalstandard.com^Gannett +mediaforce.com^MediaForce +annoyedairport.com^Admiral +petmd.com^Chewy +zetaglobal.com^ZetaGlobal +chicagobears.com^NFL +hearst.es^Hearst +trackjs.com^TrackJS +wistfulwaste.com^Admiral +clevelandbrowns.com^NFL +jaguars.com^NFL +threetruck.com^Admiral +newyorkjets.com^NFL +forestryjournal.co.uk^Gannett +vikings.com^NFL +buffalobills.com^NFL +dotmetrics.net^DotMetrics +bordercountiesadvertizer.co.uk^Gannett +cnbc.com^Comcast +dv01.co^Hearst +experian.ch^Experian +opper.io^Opper +cloudflareinsights.com^Cloudflare +telemundo47.com^Comcast +mkt2178.com^Acoustic +questjunior.nl^Hearst +tencentmusic.com^Tencent +band.com^Naver +visme.co^Visme +mastercard.com.br^Mastercard +fpjscdn.net^FingerprintJS +baidu.com^Baidu +pisocompartido.com^Vocento +imgix.net^Imgix +airbnb.ie^Airbnb +lycorp.co.jp^Naver +ydr.com^Gannett +consumerzero.com^Admiral +wisepops.com^Wisepops +ipinfo.io^IDBLLC +jpush.cn^AuroraMobile +upsellit.com^UpsellIt +dallascowboys.com^NFL +kakaomobility.com^Kakao +gumtree.co.za^eBay +pstatic.net^Naver +roeyecdn.com^Acceleration Partners +tracify.ai^Tracify +echo-news.co.uk^Gannett +mastercard.ba^Mastercard +lancastereaglegazette.com^Gannett +yoc-performance.com^YOC +houstonchronicle.com^Hearst +decolar.com.br^Prosus +2497may2024.com^horonstogly.com +wyff4.com^Hearst +byroundprince.com^CHEQ +agentofficemail.com^Intuit +riskified.com^Riskified +profootballhof.com^NFL +sdtagging.azureedge.net^sdtagging.azureedge.net +swindonadvertiser.co.uk^Gannett +safeopt.com^SafeOpt +nextdoor.com^Nextdoor +carta-marketing-firm.co.jp^CartaMarketing +convertkit.com^ConvertKit +ideal.es^Vocento +confiant.com^Confiant +rebid.co^Rebid.co +convertkit-mail.com^ConvertKit +nbcuni.com^Comcast +tauntongazette.com^Gannett +upscope.io^Upscope +baidu.hk^Baidu +raptive.com^Raptive +reliancefashionfactorystores.com^Reliance +steelmaiden.com^Admiral +aliexpress.us^AlibabaGroup +mediarithmics.io^Mediarithmics +nofraud.com^NoFraud +clearsoftware.com^Microsoft +survicate.com^Survicate +gfl85trk.com^gfl85trk.com +spotler.co.uk^Spotler +salmonfin.com^Admiral +novaon.asia^Novaon Tech +ocms.cloud^ocms.cloud +powerapps.com^Microsoft +scatteredheat.com^Admiral +satis.fi^Satisfi Labs +telexitos.com^Comcast +novaontech.com^Novaon Tech +jennydanny.com^Jennydanny.com +aticdn.net^Piano +behave.com^Wunderkind +salisburyjournal.co.uk^Gannett +polarcdn-terrax.com^Nova +wp.com^Automattic +tryazuremarketplace.com^Microsoft +obviyo.com^Obviyo +yandex.lt^Yandex +mhk.com^Hearst +freepressseries.co.uk^Gannett +nmacc.com^Reliance +despegar.com^Prosus +despegar.com.pr^Prosus +paraquemdoar.com.br^GrupoGlobo +leadboxer.com^LeadBoxer +theleague.com^Match Group +women.com^Static Media +rtbsystem.com^RTBsystem +wtkr.com^E.W. Scripps Company +ekonsilio.com^eKonsilio +valornoticias.com.br^GrupoGlobo +creditkarma.ca^Intuit +onnetwork.tv^ONNetwork +sourcetreeapp.com^Atlassian +paypal-workplace.com^Paypal +llportal.com.ph^AlibabaGroup +searchspring.io^B7Interactive +liveramp.it^LiveRamp +onetag.com^OneTag +answerbook.com^Intuit +f5.com^F5 +dynamics365businesscentral.ch^Microsoft +rqtrk.eu^RoqAd +onetrust.io^OneTrust +carvecakes.com^Admiral +sobreuol.noticias.uol.com.br^UOL +thetimesherald.com^Gannett +openeducat.org^OpenEDUCat +executeknowledge.com^Admiral +unwieldyimpulse.com^Admiral +wesh.com^Hearst +pubnation.com^OpenX +swymrelay.com^Swym +tnlmediagene.com^TNL Mediagene +mailerlite.com^MailerLite +devicetest.ai^Opera +viantinc.com^Viant +akstat.io^Akamai +orb.ee^Orbee +tappx.com^tappx +exacttarget.com^Salesforce +osano.com^Osano +bytetos.com^bytetetos.com +thetouratnbcstudios.com^Comcast +oneplus.cn^OnePlus +damageddistance.com^Admiral +abcactionnews.com^E.W. Scripps Company +cmail4.com^CampaignMonitor +getnotify.com^GetNotify +stingycrush.com^Admiral +iherb.com^iHerb +autoklose.com^Autoklose +gearboxsoftware.com^Take-Two +reliancedigital.in^Reliance +rockstarwriter.com^Admiral +otto.de^Otto +mkt8763.com^Acoustic +telemundocc.com^E.W. Scripps Company +jivochat.com^JivoChat +overwolf.com^Overwolf +nappyattack.com^Admiral +kangheekim-at-hearst.com^Hearst +the-ozone-project.com^OzoneProject +publicopiniononline.com^Gannett +pjtra.com^Partnerize +nereserv.com^nereserv.com +pntrac.com^Partnerize +marketingcloudfx.com^Web FX +pntrs.com^Partnerize +vlitag.com^InterdogMedia +avinodegroup.com^Hearst +strikestack.com^StrikeStack +nethunt.com^NetHunt +cash2india.com^Paypal +miravia.es^AlibabaGroup +gnezdo.ru^Gnezdo +taobao.tw^AlibabaGroup +jwplatform.com^JWP Connatix +nsaudience.pl^Audience Solutions +kochava.com^Kochava +pjstar.com^Gannett +paypal-business.co.uk^Paypal +naverlabs.com^Naver +ividence.com^ividence +pluckyzone.com^Admiral +saltsacademy.com^Admiral +nfltags.com^NFL +bolide.network^Bolide +shakegoldfish.com^Admiral +trustarc.com^TrustARC +ownpage.fr^Opper +mixamo.com^Adobe +wetvinfo.com^Tencent +pages01.net^Acoustic +globofilmes.com^GrupoGlobo +paypal-media.com^Paypal +humansecurity.com^HumanSecurity +macyswineshop.com^Macy's +refinery89.com^Refinery89 +tmall.com^AlibabaGroup +thirdwatch.ai^RazorPay +activedemand.com^ActiveDemand +hintup.io^HintUP +yellowblue.io^Unity +paypal-norge.no^Paypal +onef.pro^OneF +wausaudailyherald.com^Gannett +prmutv.co^Permutive +gamania.com^Gamania +zuulo.xyz^Zuulo.xyz +foodnetwork.com^Warner Bros. Discovery +zynga.com^Take-Two +paypal-sverige.se^Paypal +adagio.io^Adagio +paypal.co.id^Paypal +convertkit-mail2.com^ConvertKit +deviceinf.com^deviceinf.com +applyless.com^Admiral +cbnsaopaulo.fm.br^GrupoGlobo +tp88trk.com^tp88trk +clickcertain.com^ClickCertain +fanza.cc^fanza.cc +idaho6.com^E.W. Scripps Company +dxmdp.com^dxmdp.com +list-manage1.com^Intuit +workingtitlefilms.com^Comcast +paypal-knowledge-test.com^Paypal +intuit.com^Intuit +paypal.ch^Paypal +radware.com^Radware +browseranalytic.com^BrowserAnalytic +fox13now.com^E.W. Scripps Company +paypal.co.za^Paypal +dartsearch.net^Google +motortests.de^eBay +lazadapay.com.ph^AlibabaGroup +ttarget.ru^TTarget +bollyocean.com^bollyocean.com +businesscentral.jp^Microsoft +paypal.com.my^Paypal +weligillysies.com^weligillysies.com +experian.at^Experian +curv.cc^Paypal +adobetarget.com^Adobe +teads.com^Teads +indeonline.com^Gannett +paypal.com.ve^Paypal +2475april2024.com^horonstogly.com +lahar.com.br^Ramper +paypal.es^Paypal +richmondandtwickenhamtimes.co.uk^Gannett +puppetcorp.com^Admiral +adtrafficquality.google^Google +popin.cc^Baidu +nostra.gg^InMobi +ivitrack.com^ividence +telemundo62.com^Comcast +miamidolphins.com^NFL +viuhub.com.br^GrupoGlobo +adultswim.com^Warner Bros. Discovery +paypal.pl^Paypal +cephei-b.com^cephei-b.com +oversightboard.com^Meta +bengals.com^NFL +mtch.com^Match Group +tdslinetraffic.com^tdslinetraffic.com +lazada.sg^AlibabaGroup +qgenda.com^Hearst +blings.io^Blings +despegar.com.pe^Prosus +ngenix.net^NGENIX +rollconnection.com^Admiral +paypalgivingfund.org^Paypal +so-netmedia.jp^So-netMediaNetworks +mastercard.ua^Mastercard +paypal-deutschland.de^Paypal +wechat.com^Tencent +philos.tv^GrupoGlobo +binance.com^Binance +mlytics.com^Mlytics +mastercardpaymentservices.com^Mastercard +carrotquest.io^CarrotQuest +storyly.io^Storyly +adventurousamount.com^Admiral +bytecon.com^bytecon.com +leftliquid.com^Admiral +perion.com^Perion +persistiq.com^PersistIQ +phoenix-widget.com^Phoenix +nexxen.com^Nexxen +vkvideo.ru^VKontakte +pinterest.biz^Pinterest +popularmechanics.com^Hearst +mastercard.si^Mastercard +pages04.net^Acoustic +pub.network^Freestar +vreview.tv^Indent +shein.se^Shein +hiconversion.com^Obviyo +brand-display.com^Knorex +lymcampus.jp^Naver +nbcsportsboston.com^Comcast +pinterestacademy.com^Pinterest +harwichandmanningtreestandard.co.uk^Gannett +throtle.io^Throtle +addictedattention.com^Admiral +convertbox.com^ThriveCart +celestialspectra.com^Admiral +amazon.com.be^Amazon +bordertelegraph.com^Gannett +leadersend.com^Pipedrive +harborcaption.com^Admiral +microsoft.fr^Microsoft +paypal.be^Paypal +stepzen.com^IBM +plerdy.com^Plerdy +experian.cz^Experian +ubbfpm.com^ubbfpm.com +newscgp.com^NCAudienceExchange +ujet.cx^UJET +cubepins.com^Admiral +klarna.com^Klarna +treasuredata.com^TreasureData +pinkun.com^Gannett +intentiq.com^IntentIQ +refersion.com^Refersion +cicd.dev^Atlassian +prevention.com^Hearst +poll-maker.com^Poll Maker +boundlessveil.com^Admiral +popcash.net^PopCash +porchgroupmedia.com^PorchGroupMedia +paypal-partners.com^Paypal +profusesupport.com^Admiral +possiblepencil.com^Admiral +b2.ai^B2 +mastercard.co.kr^Mastercard +amazon.pl^Amazon +emailtracker.website^EmailTrackerWebsite +saambaa.com^Saambaa +setupad.com^Setupad +gonreommon.com^gonreommon.com +harpersbazaar.com^Hearst +createsend26.com^CampaignMonitor +trustedsite.com^TrustedSite +cabnnr.com^cabnnr.com +mkt5089.com^Acoustic +yandex.jobs^Yandex +paypal-nakit.com^Paypal +paypal-latam.com^Paypal +revistaglamour.com.br^GrupoGlobo +tv20detroit.com^E.W. Scripps Company +privy.com^Privy +heroku.com^Salesforce +rtmark.net^Propeller Ads +canadianblackbook.com^Hearst +floweryfact.com^Admiral +propelleremail.co.uk^PropellerEmail +sattiostiounper.com^sattiostiounper.com +yottaa.com^Yotta +stalesummer.com^Admiral +perimeterx.net^HumanSecurity +presage.io^Ogury +wharfedaleobserver.co.uk^Gannett +ad-alliance.de^AdAlliance +sonyged.com^Sony +despegar.cl^Prosus +iafstats.com^iafstats.com +securitytrails.com^Mastercard +zip.co^Zip +greencolumnart.com^CHEQ +alive5.com^Alive5 +viafoura.co^Viafoura +cafemedia.com^Raptive +despegar.com.gt^Prosus +despegar.com.pa^Prosus +hcaptcha.com^IntuitionMachines +mastercard.az^Mastercard +spider-labs.com^Spider Labs +despegar.com.py^Prosus +indextops.com^indextops.com +ck-ie.com^SmartyAds +yoox.it^Yoox +despegar.com.sv^Prosus +socdm.com^Supership +pubwise.io^PubWise +utah16.com^E.W. Scripps Company +skyarch.net^IBM +kbb.com^CoxEnterprises +quora.com^Quora +mastercardservices.com^Mastercard +globovideos.com^GrupoGlobo +houmatoday.com^Gannett +rhymezebra.com^Admiral +returnpath.net^Validity +receptivity.io^receptivity.io +hakkoda.io^IBM +curseforge.com^Overwolf +adcell.com^FirstLead +nextdoor.de^Nextdoor +cint.com^Cint +koco.com^Hearst +echobox.com^Echobox +interracialpeoplemeet.com^Match Group +r2b2.io^R2B2 +livelylaugh.com^Admiral +semcasting.com^Semicasting +viralize.tv^ShowHeroes +bookmsg.com^bookmsg.com +heap.io^Heap +teamblue.services^TeamBlue +chowhound.com^Static Media +mkt7752.com^Acoustic +tru.am^TrueAnthem +c88rx.com^c88rx.com +myfonts.net^MyFonts +tmnews.com^Gannett +lazlogistics.in.th^AlibabaGroup +dnofd.com^dnofd.com +createsend4.com^CampaignMonitor +geoedge.com^Geoedge +bridgwatermercury.co.uk^Gannett +adthrive.com^Raptive +nbcwashington.com^Comcast +dynamics.sk^Microsoft +cootlogix.com^Cootlogix +monsido.com^Acquia +hamleys.in^Reliance +bgr.com^Static Media +hearstranchwinery.com^Hearst +bleedlight.com^Admiral +cavecurtain.com^Admiral +razorpay.com^RazorPay +blis.com^Blis +mathereconomics.com^MatherEconomics +slickstream.com^Raptive +realtime.it^Warner Bros. Discovery +quantcount.com^Quantcast +responder.co.il^RavMesserLtd +vevor.nl^VEVOR +dynamics365businesscentral.com.au^Microsoft +kakaocloud-kr-gov.com^Kakao +vidazoo.com^Perion +hsforms.net^HubSpot +galesburg.com^Gannett +sellbrite.com^Go Daddy +medialead.de^TheReachGroup +veranda.com^Hearst +2487may2024.com^horonstogly.com +adsafety.net^OnlineSolution +columbiatribune.com^Gannett +analyzecorona.com^Admiral +fox4now.com^E.W. Scripps Company +bizrate.com^Taboola +cnn.io^Warner Bros. Discovery +skymediavillage.sky^Comcast +pendo.io^Pendo +united.jp^UNITED Marketing Technologies +jio.com^Reliance +unseenreport.com^Unseen +nhregister.com^Hearst +driveniq.com^DrivenIQ +hubspotemail.net^HubSpot +mobile.de^eBay +macysrestaurants.com^Macy's +concert.io^Vox Media +flocktory.com^QIWIGroup +registercitizen.com^Hearst +sendmachine.com^SmartMachine +bilinfo.dk^eBay +juicyads.me^JuicyAds +outreach.io^Outreach +denbighshirefreepress.co.uk^Gannett +wakeballast.com^wakeballast +cmail24.com^CampaignMonitor +postaffiliatepro.com^Quality Unit +boletius.com^boletius.com +relianceretail.com^Reliance +tirabeauty.com^Reliance +microad.co.jp^MicroAd +assineglobo.com.br^GrupoGlobo +maillist-manage.com.au^Zoho +bumlam.com^Reliz +knottyswing.com^Admiral +reo.dev^Reo.Dev +cookiebot.com^UserCentrics +baltimoreravens.com^NFL +ay.delivery^AssertiveYield +airbnb.de^Airbnb +transunion.com^TransUnion +goupstate.com^Gannett +roq.ad^RoqAd +adx.space^AdxSpace +cambstimes.co.uk^Gannett +static.com^Static Media +airbnb.es^Airbnb +shopline.com^Shopline +beeper.com^Automattic +drift.com^Salesloft +rudderlabs.com^RudderStack +emarsys.net^SAP +goofish.com^AlibabaGroup +remotejs.com^TrackJS +commanders.com^NFL +close.io^Close +incross.com^Incross +thehotelsnetwork.com^The Hotels Network +smtp2go.com^SMTP2Go +hatena.co.jp^Hatena +sindyk.com^Digital Partners Group +muxanalytics.com^Mux +sonyatv.com^Sony +clearbit.com^HubSpot +attractionbanana.com^Admiral +mcizas.com^mcizas.com +daraz.lk^AlibabaGroup +7a75ebcbd7.com^BeMob +siteimproveanalytics.com^SiteImprove +starsbuildingweb.com^CHEQ +incompetentjoke.com^Admiral +milfordmercury.co.uk^Gannett +mulesoft.com^Salesforce +performcb.com^PerformCB +novaonads.com^Novaon Tech +pxi.pub^HumanSecurity +avito.ru^KEKH EKommerts +cmail27.com^CampaignMonitor +salecycle.com^SaleCycle +zi-scripts.com^ZoomInfo +jewelml.io^Jewel ML +jiomart.com^Reliance +loudlunch.com^Admiral +ambientdusk.com^Admiral +mtnmontana.com^E.W. Scripps Company +slack.com^Salesforce +tagtoo.com^Tagtoo +cosmopolitan.com^Hearst +live.net^Microsoft +gardenovens.com^Admiral +rdbrck.com^Redbrick +kxlf.com^E.W. Scripps Company +vccorp.vn^VCCorp +living-magazines.co.uk^Gannett +createsend12.com^CampaignMonitor +stg.com^STG +conteudoglobo.globo^GrupoGlobo +tlc.com^Warner Bros. Discovery +reliancecentro.store^Reliance +despegar.com.uy^Prosus +aidemsrv.com^aidem +illumination.com^Comcast +samsung.com^Samsung +a-ads.com^A-Ads +satisfilabs.com^Satisfi Labs +10news.com^E.W. Scripps Company +selectmedia.asia^SelectMedia +cmail15.com^CampaignMonitor +paypal-optimizer.com^Paypal +ahctv.com^Warner Bros. Discovery +mkt6903.com^Acoustic +fox47news.com^E.W. Scripps Company +mkt10067.com^Acoustic +combcompetition.com^Admiral +acsmedia.us^ActiveDemand +aniview.com^Aniview +b3mxnuvcer.com^b3mxnuvcer +episerver.net^Optimizely +webeyez.com^Webeyez Analytics +adzilla.name^adzilla.name +pages03.net^Acoustic +line.biz^Naver +shift4.com^Shift4 +glance.com^InMobi +servedbyadbutler.com^Sparklit +openxcdn.net^OpenX +gsspcln.jp^GENIEE +wideangle.co^Input Objects +thespectrum.com^Gannett +inmobiapis.com^InMobi +sardine.ai^SardineAI +shopifyapps.com^Shopify +kmalgo.com^Shopline +viralize.com^ShowHeroes +getdeviceinf.com^getdeviceinf.com +microsoftaffiliates.com^Microsoft +oakridger.com^Gannett +chocolateplatform.com^Silverpush +hattiesburgamerican.com^Gannett +thewestonmercury.co.uk^Gannett +vividcanopy.com^Admiral +lincolncourier.com^Gannett +skai.io^Skai +thedailyjournal.com^Gannett +ninja.co.jp^NinjaTools +jan-magazine.nl^Hearst +mediascope.net^Mediascope +experian.bg^Experian +skt.ch^Comcast +knoxnews.com^Gannett +manisteenews.com^Hearst +marvellousmachine.net^Maytrics +smilewanted.com^SmileWanted +womansday.com^Hearst +bolide.ai^Bolide +thegardnernews.com^Gannett +ziffdavis.com^ZiffDavis +mailstat.us^BoomerangGmail.com +vtex.com.br^Vtex +dmm.co.jp^DMM +thryv.com^Thryv +dentsu.com^Dentsu +sie.com^Sony +raresummer.com^Admiral +caranddriver.com^Hearst +news5cleveland.com^E.W. Scripps Company +usemessages.com^HubSpot +sonyfg.co.jp^Sony +cmail14.com^CampaignMonitor +vanksen.com^Vanksen +gastongazette.com^Gannett +seahawks.com^NFL +bemail.it^beMail +greenarrowemail.com^GreenArrow +redbasketball.com^Admiral +elcorreo.com^Vocento +hangar13games.com^Take-Two +speedcurve.com^SpeedCurve +zatnoh.com^zatnoh +meadowlullaby.com^Admiral +yieldlove-ad-serving.net^yieldlove-ad-serving.net +cleverdata.ru^CleverData +bigrapidsnews.com^Hearst +1thek.com^Kakao +greenvilleonline.com^Gannett +cosmosdb.com^Microsoft +skymedia.co.uk^Comcast +ccgateway.net^ccgateway.net +operamediaworks.com^Opera +swipechief.com^Admiral +webvisor.com^Yandex +kitsapsun.com^Gannett +ekonsilio.io^eKonsilio +douyin.com^Bytedance +housedigest.com^Static Media +inmarket.com^InMarket +americanexpress.com.sa^American Express +jalopnik.com^Static Media +workhorsefunds.com^Admiral +unpkg.com^UNPKG +knitstamp.com^Admiral +vevor.ca^VEVOR +monu.delivery^monu.delivery +smrtb.com^Sovrn +11ctch.com^Catch +airbnb.dk^Airbnb +rdrctgoweb.com^rdrctgoweb.com +silverpush.co^Silverpush +strpst.com^Stripchat +kickfire.com^IDG +autocasion.com^Vocento +text.com^Text +xlivrdr.com^Stripchat +motor-talk.de^eBay +prima.co.uk^Hearst +valoreconomico.com.br^GrupoGlobo +childlikecrowd.com^Admiral +superawesome.com^SuperAwesome +seatsmoke.com^Admiral +reaktion.com^Reaktion +adizio.com^LiftDSP +onecount.net^GCN Publishing +deutschepost.de^Deutsche Post DHL +nineforbrands.com.au^Nine +tcgplayer.com^eBay +mastercard.hu^Mastercard +cloudchamberstudios.com^Take-Two +azionrum.net^Azion +sentry-cdn.com^FunctionalSoftware +pixel.ad^pixel.ad +paypal-marketing.ca^Paypal +llportal.com.my^AlibabaGroup +msphu.net^Microsoft +papago-plus.com^Naver +airwallex.com^Airwallex +neatshade.com^Admiral +elcomercio.es^Vocento +localiq.com^Gannett +vocstatic.com^Vocento +pulsatingmeadow.com^Admiral +artnow2025.com^Hearst +paypal.fi^Paypal +snapchat.com^Snap +llportal.co.id^AlibabaGroup +sonycsl.co.jp^Sony +massmedia.com^Take-Two +xoom-experience.com^Paypal +vocalink.com^Mastercard +target-video.com^TargetVideo +eveningsun.com^Gannett +requestmetrics.com^TrackJS +parse.ly^Automattic +mastercard.co.in^Mastercard +qiota.com^Opper +rentpenny.com^Admiral +fudgegenie.com^Admiral +forseasky.com^CHEQ +polarcdn.com^Nova +bra2hmail.com^Limabean +iflix.com^Tencent +paypal.co.uk^Paypal +justpremium.com^GumGum +visx.net^YOC +2ememain.be^eBay +snigelweb.com^Snigel +jsonline.com^Gannett +contactmonkey.com^ContentMonkey +eastlothiancourier.com^Gannett +netpub.media^NetpubMedia +helpdesk.com^Text +ksby.com^E.W. Scripps Company +sonypictures.com^Sony +whitehavennews.co.uk^Gannett +avct.cloud^Avocet +leadsrx.com^Unbounce +deduce.com^CHEQ +thrtle.com^Throtle +xtremepush.com^XtremePush +countytimes.co.uk^Gannett +geocomply.com^GeoComply +timesinternet.in^TimesInternet +quip.com^Salesforce +sitewithg.com^sitewithg.com +fatmedia.io^ad-shot +traffic-media.co.uk^TrafficMedia +sony.com.cn^Sony +trillion.com^Trillion +metrocourier-inc.com.ph^AlibabaGroup +nextmillennium.io^NextMillennium +paypal.pt^Paypal +jwp-connatix.com^JWP Connatix +citizen-times.com^Gannett +airship.com^Airship +otm-r.com^OTM +trafficstars.com^TrafficStars +cheq.ai^CHEQ +opecloud.com^TripleLift +buzzster.com^Shareaholic +truvid.com^TruVid +telemundonuevainglaterra.com^Comcast +helpscout.net^HelpScout +bluecore.com^Bluecore +trvdp.com^TruVid +wjcl.com^Hearst +opinary.com^Opinary +foodie.com^Static Media +changeablecats.com^Admiral +wisn.com^Hearst +upwave.com^UpWave +bfmio.com^BeachFront +manheim.com^CoxEnterprises +circolocorecords.com^Take-Two +tamedia.link^TXGroup +seoptiks.com^SEOptiks +colts.com^NFL +forroundprince.com^CHEQ +adventure-novels.com^TodRock +dtscdn.com^dtscdn.com +otm-r.ru^OTM +apptio.com^IBM +qualigo.com^Qualigo +ezoiccdn.com^Ezoic +ril.com^Reliance +upscope.com^Upscope +staruniongame.com^StarUnion +capitalaudience.com^CapitalAudience +adzilla1.name^adzilla1.name +alevco.net^Alevco +vdx.tv^VDX +m167cw.com^m167cw.com +redmart.com^AlibabaGroup +warnerbros.com^Warner Bros. Discovery +vevor.de^VEVOR +experian.pl^Experian +wayfair.co.uk^Wayfair +lowercases.com^Admiral +cartoonnetwork.com^Warner Bros. Discovery +vogue.gm^GrupoGlobo +motionflowers.com^Admiral +mysalo.store^mysalo.store +aforesponse.com^AfoResponse +campaignmonitor.com^CampaignMonitor +pepperjam.com^Partnerize +warp.style^Faber Company +ltwebstatic.com^Shein +online-solution.biz^OnlineSolution +nflrush.com^NFL +nsureapi.com^nSure.ai +teracent.net^Google +herefordtimes.com^Gannett +streak.com^Streak +cityrobotflower.com^CHEQ +muscache.com^Airbnb +sucuri.net^Go Daddy +utarget.ru^UTarget +bleacherreport.com^Warner Bros. Discovery +malverngazette.co.uk^Gannett +certilogo.com^eBay +mltrk.io^Hunter +privacy-mgmt.com^Sourcepoint +valuecommerce.co.jp^ValueCommerce +kilburntimes.co.uk^Gannett +primo.design^Visarity +heraldseries.co.uk^Gannett +ogury.com^Ogury +spxl.ink^spxl.ink +liveramp.de^LiveRamp +adobedc.net^Adobe +eadt.co.uk^Gannett +d2lyx5ly60ksu3.cloudfront.net^d2lyx5ly60ksu3.cloudfront.net +nbcnewyork.com^Comcast +stroudnewsandjournal.co.uk^Gannett +npttech.com^Piano +pontiacdailyleader.com^Gannett +nbcboston.com^Comcast +lasprovincias.es^Vocento +pstmrk.it^Postmark +sumo.com^Sumo Group +oferplan.com^Vocento +clarium.io^Confiant +lura.live^Akta +explore.com^Static Media +dynamics365.co^Microsoft +shakysurprise.com^Admiral +smlists.com^SmartMachine +videostep.com^Invibes +smartclip.net^SmartClip +stytch.com^Stytch +hearst.it^Hearst +iotechnologies.com^iotechnologies +mastercard.sk^Mastercard +pghub.io^Tapad +animalplanet.com^Warner Bros. Discovery +mkt5654.com^Acoustic +49ers.com^NFL +sfgate.com^Hearst +recordedfuture.com^Mastercard +adsbymediavine.com^Mediavine +anura.io^Anura +topcomparativas.com^Vocento +navercloudcorp.com^Naver +alipaydns.com^AlibabaGroup +nyl.as^Nylas +marieclaire.it^Hearst +webglobe.com^WebGlobe +funraise.io^Funraise +nowaymail.com^Admiral +wisepops.net^Wisepops +turium.es^Vocento +xlgames.com^Kakao +tcm.com^Warner Bros. Discovery +travelchannel.com^Warner Bros. Discovery +wpjobmanager.com^Automattic +mieru-ca.com^Faber Company +trutv.com^Warner Bros. Discovery +push-ad.com^AdNext Group +warnerbrosdiscovery.dk^Warner Bros. Discovery +livechat.com^Text +wmur.com^Hearst +carloforward.com^Admiral +reliz.com^Reliz +wbd.com^Warner Bros. Discovery +amazon.ie^Amazon +max.com^Warner Bros. Discovery +thetelegraph.com^Hearst +selfishsnake.com^Admiral +pinterestcareers.com^Pinterest +googleadshost.net^googleadshost.net +leagueoflegends.com^Tencent +tradiewebguys.com.au^TradieWebGuys +melon.com^Kakao +localiq.co.uk^Gannett +viafoura.net^Viafoura +thedailymeal.com^Static Media +memorizematch.com^Admiral +wistia.com^Wistia +richessemag.jp^Hearst +verdantlabyrinth.com^Admiral +ezymarketer.net^ezymarketer +sendgrid.com^Twilio +kyc.red^Signifyd +exhibitsneeze.com^Admiral +reflow.tv^SceneStealer +opti-digital.com^optidigital +dktcdn.net^Sapo +allstarunion.com^StarUnion +microad.net^MicroAd +noibu.com^Noibu +klaviyo.com^Klaviyo +dramaticdirection.com^Admiral +reddithelp.com^reddit +powerstarsbuilding.com^CHEQ +bouncetv.com^E.W. Scripps Company +connectad.io^ConnectAdRealtime +mentionideablit.com^mentionideablit.com +xometry.com^Xometry +xdiwbc.com^xdiwbc.com +maillist-manage.in^Zoho +mandrillapp.com^Intuit +ipify.org^ipify +yandex.tj^Yandex +optimallimit.com^Admiral +sky.at^Comcast +teraboxcdn.com^teraboxcdn.com +gammaplatform.com^gammaplatform.com +shopifysvc.com^Shopify +acsbapp.com^Accessibe +fengkongcloud.com^iShumei +yandex.aero^Yandex +yandex.net^Yandex +jailbulb.com^Admiral +prod-adenty-cdn.azureedge.net^prod-adenty-cdn.azureedge.net +cmail26.com^CampaignMonitor +alt.com^FriendFinder Networks +invibes.com^Invibes +airbnb.co.uk^Airbnb +arcspire.io^Arcspire +mastercard.md^Mastercard +quirkybodega.com^Admiral +aliveachiever.com^Admiral +tmj4.com^E.W. Scripps Company +clientgear.com^Yeahmobi +yotpo.com^Yotpo +createsend21.com^CampaignMonitor +waust.at^whos.amung.us +juicyscore.com^JuicyScore +restrainstorm.com^Admiral +indentcorp.com^Indent +redditstatic.com^reddit +baidu.net.au^Baidu +mktsci.com^Marketing Science +siscom.globo^GrupoGlobo +clickcease.com^CHEQ +monacobeatles.com^Admiral +moloco.com^Moloco +latamwbd.com^Warner Bros. Discovery +dotdigitalgroup.com^dotdigital Group +calypsocapsule.com^Admiral +redditchadvertiser.co.uk^Gannett +crimeandinvestigationplay.co.uk^Hearst +uol.com.br^UOL +judge.me^Judge +a4cdn.org^a4cdn.org +turner.com^Warner Bros. Discovery +blackpeoplemeet.com^Match Group +pdst.fm^Spotify +wayfair.de^Wayfair +okcupid.com^Match Group +cdnwidget.com^CDNWidget +gumtree.com^eBay +steadfastsound.com^Admiral +pxchk.net^HumanSecurity +deliveryjs.com^deliveryjs.com +passion.com^FriendFinder Networks +advanced-store.com^AdvancedStore +affec.tv^HybridTheory +smtp2go.net^SMTP2Go +addin1.name^addin1.name +yuewen.com^Tencent +ebxcdn.com^Echobox +sctimes.com^Gannett +whitchurchherald.co.uk^Gannett +recordonline.com^Gannett +jads.co^JuicyAds +albss.com^albss.com +zqtk.net^comScore +rtoaster.jp^BrainPad +trafficfactory.biz^TrafficStars +createsend1.com^CampaignMonitor +qq.com^Tencent +yads.tech^RideTechnology Global +sng.link^SingularLabs +warumbistdusoarm.space^Warumbistdusoarm +sailthru.com^SailThru +canvasandsocks.com^Admiral +socialnative.com^SocialNative +macysinc.com^Macy's +stripst.com^Stripchat +agile.dev^Atlassian +discoveryplus.com^Warner Bros. Discovery +golfpass.com^Comcast +croomaingly.com^croomaingly.com +dynamics365.us^Microsoft +alipayobjects.com^AlibabaGroup +experian.be^Experian +koaa.com^E.W. Scripps Company +campsystems.com^Hearst +geminiadvisory.io^Mastercard +mkt4091.com^Acoustic +yoojia.com^Baidu +cmail13.com^CampaignMonitor +take2games.com^Take-Two +apms5.com^AutoPilot +telemundo40.com^Comcast +microsoft.org^Microsoft +mkt4477.com^Acoustic +rockerbox.com^RockerBox +hsadspixel.net^HubSpot +hearstmediact.com^Hearst +focusfeatures.com^Comcast +thirtyfirstunion.com^Take-Two +airbnb.com.br^Airbnb +createsend9.com^CampaignMonitor +emag.bg^eMAG +d1cr9zxt7u0sgu.cloudfront.net^d1cr9zxt7u0sgu.cloudfront.net +hearst.com.cn^Hearst +mkt4261.com^Acoustic +picoxr.com^Bytedance +rebuyengine.com^RebuyInc +tiresomethunder.com^Admiral +tastingtable.com^Static Media +marktplaats.nl^eBay +1film.to^1film.to +adtheorent.com^AdTheorent +redlink.pl^Redlink +flixcdn.com^flixcdn.com +ebaystatic.com^eBay +onpeople.asia^Novaon Tech +paypal.fr^Paypal +mastercard.at^Mastercard +paypal.lu^Paypal +coxcleantech.com^CoxEnterprises +yesware.com^Yesware +meetic.fr^Match Group +kameleoon.eu^Kameleoon +app-us1.com^ActiveCampaign +qualtrics.com^Qualtrics +gbqofs.com^gbqofs.com +operasoftware.com^Opera +yoox.com^Yoox +weishi.com^Tencent +mnaspm.com^mnaspm.com +indexnow.org^Microsoft +dynamics365.in^Microsoft +images-iherb.com^iHerb +ishumei.com^iShumei +chillicothegazette.com^Gannett +ecal.com^HyperKu +geniuslinkcdn.com^Geniuslink +experian.ie^Experian +adschill.com^adschill.com +samba.tv^Samba.tv +thenews-messenger.com^Gannett +hurtgrape.com^Admiral +boxofficeessentials.com^comScore +localedge.com^Hearst +yandex.org^Yandex +wgal.com^Hearst +illumin.com^illumin +sendiio.app^Sendiio +commercialappeal.com^Gannett +paypal.ph^Paypal +getanchor.io^Hornblower Group +tnafpt.com^tnafpt.com +slashfilm.com^Static Media +acumbamail.com^Acumbamail +iinfo.cz^Internet Info +inpwrd.net^inPowered +peterboroughmatters.co.uk^Gannett +discoveryjapan.jp^Warner Bros. Discovery +keighleynews.co.uk^Gannett +ksbw.com^Hearst +rxayc.com^rxayc.com +cisco.com^Cisco +argusleader.com^Gannett +kampyle.com^Medallia +emag.ro^eMAG +mkt3469.com^Acoustic +redtigerwiki.com^Microsoft +tailtarget.com^TOTVS +sendfox.com^SendFox +shiftdigitalapps.io^Shiftdigitalapps.io +bicesteradvertiser.net^Gannett +mpeasylink.com^mpeasylink.com +maytrics.de^Maytrics +perigold.com^Wayfair +mashed.com^Static Media +northjersey.com^Gannett +automobile.it^eBay +toasttutor.com^Admiral +emag.hu^eMAG +vicinity.media^VicinityMedia +bungeesleeves.com^Admiral +ebay-kleinanzeigen.de^eBay +vevor.co.uk^VEVOR +yandex.kz^Yandex +quotenet.nl^Hearst +flightbridge.com^Hearst +coxautoinc.com.au^CoxEnterprises +paypal.com.br^Paypal +vevor.es^VEVOR +gazetteherald.co.uk^Gannett +warnerbrosgames.com^Warner Bros. Discovery +bncloudfl.com^Clickadu +fifty.io^FiftyTechnologyLimited +wpadmngr.com^wpadmngr +newsleader.com^Gannett +smct.io^intent.ly +lionhearts.co.kr^Kakao +pntra.com^Partnerize +rockstargames.com^Take-Two +ajio.com^Reliance +soothingglade.com^Admiral +apps.pingone.com^Ping Identity +cityferry.com^Hornblower Group +mps.live^Tencent +firestormmarketing.com^Firestorm Marketing +zhihu.com^Zhihu +opin.media^opin.media +gazetteseries.co.uk^Gannett +revenuegrid.com^RevenueGrid +youstarsbuilding.com^CHEQ +edgeone.ai^Tencent +hepsiburada.com^D-MARKET Elektronik Hizmetler Tic. +ctpost.com^Hearst +nnowa.com^nnowa.com +paypal.com.au^Paypal +warringtonguardian.co.uk^Gannett +adleadevent.com^NotifyGroup +yandex.fr^Yandex +fleetnetamerica.com^CoxEnterprises +2477april2024.com^horonstogly.com +m2911p.com^m2911p.com diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/Fingerprinting b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/Fingerprinting new file mode 100644 index 0000000..5574ca0 --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/Fingerprinting @@ -0,0 +1,146 @@ +cdn-net.com/ +jubnaadserve.com/ +kitewheel.com/ +cdn.alevco.de/ +wpadmngr.com/ +zadn.vn/ +vtex.com.br/ +beelinks.solutions/ +fengkongcloud.com/ +stripe.network/ +flux-cdn.com/ +perfdrive.com/ +fpnpmcdn.net/ +fcmatch.youtube.com/ +bizweb.dktcdn.net/ +chat-content.beanfun.com/ +flocktory.com/ +o789thktrk.com/ +shoplineapp.com/ +manhattan.hintup.io/ +origo.hu/ +st-n.ads1-adnow.com/ +vocento.com/ +pxlclnmdecom-a.akamaihd.net/ +doyouad.com/ +cdn.asksuite.com/ +omni-databank.com/ +a.mysalo.store/ +thehotelsnetwork.com/ +marketingcloudfx.com/ +fpjscdn.net/ +trendemon.com/ +static.affilae.com/ +pixel.thoughtmetric.io/ +rqtrk.eu/ +xdiwbc.com/ +tracify.ai/ +xiaoyuanzhao.com/ +tp88trk.com/ +thirdwatch.ai/ +flyde.io/ +plerdy.com/ +unseenreport.com/ +xfyun.cn/ +smarketer.de/ +media-rockstargames-com.akamaized.net/ +yoox.it/ +cdn.spxl.ink/ +s.marvellousmachine.net/ +js.securionpay.com/ +vic-m.co/ +mcizas.com/ +fcmatch.google.com/ +cdn.gbqofs.com/ +sp-trk.com/ +onef.pro/ +rdrctgoweb.com/ +gfl85trk.com/ +clickcease.com/ +digital.flytedesk.com/ +adsxtits.com/ +tncid.app/ +keytiles.com/ +fixidle.com/ +contents-search-windows.com/ +amocrm.ru/ +adtng.com/ +cdn.getdeviceinf.com/ +refersion.com/ +g.lazcdn.com/ +mapixl.com/ +qiota.com/ +warumbistdusoarm.space/ +script.anura.io/ +st-n.ads5-adnow.com/ +analytics.webgains.io/ +trafficjunky.com/ +b2c.com/ +api.fouanalytics.com/ +maggieeatstheangel.com/ +d.rageagainstthesoap.com/ +buzzoola.com/ +acint.net/ +salesmanago.com/ +nwwais.com/ +24ttl.stream/ +phoenix-widget.com/ +aiactiv.io/ +ad2iction.com/ +t.makehook.ws/ +othersides.top/ +91app.com/ +teamblue.services/ +dnofd.com/ +cdn.quadpay.com/ +7a75ebcbd7.com/ +listenlayer.com/ +revoffers.com/ +adschill.com/ +zatnoh.com/ +rerender.jewelml.io/ +sitewithg.com/ +sardine.ai/ +iivt.com/ +pixel.barion.com/ +analytics.fatmedia.io/ +fpcdn.io/ +cometlytrack.com/ +validate.onecount.net/ +seel.com/ +score.juicyscore.com/ +lab.alpineiq.com/ +vreview.tv/ +fingerprinter.msedgedemo.example/ +keenquill.com/ +smartjscdn.sindyk.com/ +ecal.com/ +cdn.tapioni.com/ +ai.trk42.net/ +aamapiv2.com/ +ufpcdn.com/ +stripst.com/ +adskeeper.com/ +openfpcdn.io/ +capitalaudience.com/ +durchsichtig.xyz/ +twik.io/ +friendshipmale.com/ +push-ad.com/ +api.iafstats.com/ +cdn.luckylabs.io/ +webtrafficsource.com/ +fqtag.com/ +tranquilveil.com/ +myshopline.com/ +ssm.codes/ +z0000g.yvmads.com/ +ansira.com/ +leadinfo.net/ +00px.net/ +sparkloop.app/ +smct.io/ +metrics.psmmarketing.com/ +onsite.joinground.com/ +sdk.fek.pulselive.com/ +km0trk.com/ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/LICENSE b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/LICENSE new file mode 100644 index 0000000..439e25a --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/LICENSE @@ -0,0 +1 @@ +Licensed under a separate commercial license from Disconnect, Inc. \ No newline at end of file diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/Other b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/Other new file mode 100644 index 0000000..616500c --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/Other @@ -0,0 +1,12 @@ +privacy-center.org/ +onetrust.io/ +cookielaw.org/ +trustarc.com/ +osano.com/ +cookiebot.eu/ +onetrust.com/ +truste-svc.net/ +privacy-mgmt.com/ +cookiebot.com/ +transcend.io/ +other-tracker.msedgedemo.example/ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/Social b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/Social new file mode 100644 index 0000000..568f971 --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/Social @@ -0,0 +1,200 @@ +open.mkt1946.com/ +convertkit-mail5.com/ +social-tracker.msedgedemo.example/ +open.mkt8062.com/ +open.mkt8008.com/ +open.mkt6316.com/ +m3651.net/ +open.mkt6793.com/ +open.mkt3838.com/ +open.mkt4158.com/ +eds5.mailcamp.nl/ +open.mkt10663.com/ +open.mkt1937.com/ +open.mkt2178.com/ +emaillabs.co/ +open.mkt6917.com/ +open.mkt4477.com/ +open.mkt10008.com/ +cdnwidget.com/ +open.mkt8063.com/ +open.mkt32.net/ +returnpath.net/ +open.mkt922.com/ +open.mkt5657.com/ +flodesk.com/ +open.mkt8988.com/ +mailblue.eu/ +system.send24.pl/ +open.mkt7842.com/ +cpro20.com/ +vinc.fr/ +8d8.biz/ +10web.io/ +open.mkt9203.com/ +open.mkt10067.com/ +ot.gliq.com/ +open.mkt10153.com/ +open.mkt10114.com/ +smtp2go.com/ +tiktok.com/ +edrone.me/ +api-01.moengage.com/ +open.mkt4424.com/ +open.mkt41.net/ +open.mkt8628.com/ +bentonow.com/ +open.mkt7596.com/ +open.mkt685.com/ +open.mkt5514.com/ +open.mkt6288.com/ +open.mkt8345.com/ +open.mkt5216.com/ +eu4-api.connectif.cloud/ +open.mkt6688.com/ +open.mkt6903.com/ +open.mkt8763.com/ +open.mkt6478.com/ +open.mkt6967.com/ +open.mkt7752.com/ +open.mkt51.net/ +pvd.to/ +open.mkt7946.com/ +open.mkt7974.com/ +open.mkt7971.com/ +open.mkt5089.com/ +mailtracker.pl/ +open.mkt7783.com/ +open.mkt1248.com/ +sptracking.getblueshift.com/ +open.mkt8064.com/ +snapchat.com/ +open.mkt3536.com/ +open.mkt8043.com/ +senderit.pl/ +gasv1.com/ +open.mkt8163.com/ +open.mkt9026.com/ +open.mkt941.com/ +open.mkt8007.com/ +open.mkt9942.com/ +sendpul.se/ +basiscommunicatie.nl/ +open.mkt5379.com/ +open.mkt81.net/ +open.mkt9054.com/ +open.mkt8133.com/ +open.mkt2685.com/ +open.mkt61.net/ +open.mkt829.com/ +emlmkt.com/ +open.mkt8369.com/ +adsugar.ch/ +open.mkt912.com/ +open.mkt4261.com/ +mailer.lassocrm.com/ +campaign-tracking.woowup.com/ +open.mkt9923.com/ +open.mkt5224.com/ +sendiio.app/ +eu3-api.connectif.cloud/ +open.mkt9775.com/ +em.yotpo.com/ +open.mkt5654.com/ +pstmrk.it/ +open.mkt10049.com/ +open.mkt8267.com/ +open.mkt5419.com/ +cpro30.com/ +open.mkt2724.com/ +open.mkt1365.com/ +pixel.inbox.exacttarget.com/ +clickacumba.com/ +open.mkt6882.com/ +open.mkt5297.com/ +email-messaging.com/ +trckacbm.com/ +open.mkt71.net/ +smartsendy.com/ +mailmktool.com/ +cdn.uk.exponea.com/ +open.mkt6260.com/ +open.mkt10039.com/ +p.yotpo.com/ +authoremail.com/ +convertkit-mail6.com/ +acmbtrc.com/ +open.mkt8756.com/ +x.com/ +viralhosts.com/ +apms5.com/ +opens.responder.co.il/ +autopilotmail.io/ +open.mkt4091.com/ +open.mkt9430.com/ +mailcamp.net.pl/ +open.mkt9862.com/ +open.mkt4644.com/ +cp20.com/ +bemail.it/ +open.mkt6264.com/ +smlists.com/ +m3652.net/ +cl1-api.connectif.cloud/ +sendfox.com/ +agentofficemail.com/ +track-mb.bra2hmail.com/ +acblnk.com/ +4dem.it/ +open.mkt3797.com/ +trac.visme.co/ +open.mkt7972.com/ +open.mkt7580.com/ +open.mkt7234.com/ +eu2-api.connectif.cloud/ +convertkit-mail2.com/ +convertkit-mail3.com/ +open.mkt6031.com/ +ixactcontact.com/ +xylionmail.pl/ +open.mkt8586.com/ +skem1.com/ +open.mkt3469.com/ +open.mkt10781.com/ +strikestack.com/ +convertkit-mail.com/ +convertkit-mail4.com/ +sailplay.ru/ +open.mkt5906.com/ +stable.cz/ +track.gliq.com/ +smtp2go.net/ +open.mkt2478.com/ +xpressmail.hu/ +open.mkt7883.com/ +leadersend.com/ +pushnami.com/ +hodes.com/ +agilemeasure.com/ +open.mkt3798.com/ +open.mkt8096.com/ +bandzoogle.com/ +open.mkt5566.com/ +open.mkt7832.com/ +open.mkt4463.com/ +engagingnetworks.app/ +myvisualiq.net/ +nyl.as/ +xtremepush.com/ +open.mkt6735.com/ +tracking.retailrocket.net/ +ondemand.com/ +servedbyadbutler.com/ +adventure-novels.com/ +openeducat.org/ +aforesponse.com/ +acmtrk.com/ +sendcloud.net/ +e.customeriomail.com/ +api.carrotquest.io/ +e.wordfly.com/ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/Staging b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/Staging new file mode 100644 index 0000000..260f6cc --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/Sigma/Staging @@ -0,0 +1 @@ +staging-tracker.msedgedemo.example/ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/manifest.json b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/manifest.json new file mode 100644 index 0000000..362c3ec --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Trust Protection Lists/1.0.0.34/manifest.json @@ -0,0 +1,6 @@ +{ + "description" : "Trust Protection Lists", + "listFormat" : 1, + "name" : "TrustProtectionLists", + "version" : "1.0.0.34" +} diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/TrustTokenKeyCommitments/2026.3.23.1/LICENSE b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/TrustTokenKeyCommitments/2026.3.23.1/LICENSE new file mode 100644 index 0000000..33072b5 --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/TrustTokenKeyCommitments/2026.3.23.1/LICENSE @@ -0,0 +1,27 @@ +// Copyright 2015 The Chromium Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions of source code must retain the above copyright +// notice, this list of conditions and the following disclaimer. +// * Redistributions in binary form must reproduce the above +// copyright notice, this list of conditions and the following disclaimer +// in the documentation and/or other materials provided with the +// distribution. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/TrustTokenKeyCommitments/2026.3.23.1/_metadata/verified_contents.json b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/TrustTokenKeyCommitments/2026.3.23.1/_metadata/verified_contents.json new file mode 100644 index 0000000..549246a --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/TrustTokenKeyCommitments/2026.3.23.1/_metadata/verified_contents.json @@ -0,0 +1 @@ +[{"description":"treehash per file","signed_content":{"payload":"eyJjb250ZW50X2hhc2hlcyI6W3siYmxvY2tfc2l6ZSI6NDA5NiwiZGlnZXN0Ijoic2hhMjU2IiwiZmlsZXMiOlt7InBhdGgiOiJMSUNFTlNFIiwicm9vdF9oYXNoIjoiUGIwc2tBVUxaUzFqWldTQnctV0hIRkltRlhVcExiZDlUcVkwR2ZHSHBWcyJ9LHsicGF0aCI6ImtleXMuanNvbiIsInJvb3RfaGFzaCI6IndrTDI5Mng5YnI2S2RDa19EclBQWFc3OHFEUWllRWN2M3NXdmZ6d0s0X2MifSx7InBhdGgiOiJtYW5pZmVzdC5qc29uIiwicm9vdF9oYXNoIjoiZnFtUEl3aXB4UjBYb2F4eHRrcjc0cVFmOEtDRG9XYWc1TXhDaV9SUEJ4VSJ9XSwiZm9ybWF0IjoidHJlZWhhc2giLCJoYXNoX2Jsb2NrX3NpemUiOjQwOTZ9XSwiaXRlbV9pZCI6ImtpYWJoYWJqZGJramRwamJwaWdmb2RiZGptYmdsY29vIiwiaXRlbV92ZXJzaW9uIjoiMjAyNi4zLjIzLjEiLCJwcm90b2NvbF92ZXJzaW9uIjoxfQ","signatures":[{"header":{"kid":"publisher"},"protected":"eyJhbGciOiJSUzI1NiJ9","signature":"n1oJ4gl6pg0qX5bsAw811AGmrsYS0Jk8o466nc1IkiD4d_D51HnmNyd0aXKRkuRNl-oLcK1In1-zzKx-UyNYdDF0C-mwHiKAfh6Mvpn2SfaGq5D-rQyohjP6Fo6iypfruQ3iAXLGcDx9g1lv0PITkaMadgVbAoWlr9EMyT34yIoz99qv989bcHt3nlZj6nEJ2anq1Vz0r8A9v3sP-c-yky3kRm9vJyuzTJTguJLUKsFIaeUv90r9_wYU6_pTzC6qSmsoRdIvADrciIVBiNaKCtXkMxiuX5KcDKRuMPXmeHTa7M9CzZFY8Dc09rQym5ktQyAGVpw_4n4JU1tlpUBttSzuHZTq62yHckd7EME6ponpPEtrQ8wCO10t-OeYrsTk5FBWh-GqKEjn8tpa26WzxAW1HBuxLv9cdkdSv9vxXIbCB7nq7J7fiaXfvTJXJHkD9GeL6yt4wo1tT2r9hV8DxJBIewKUkZ1HTfquN6bU4XvTOOJcfXl2sli_wZHlI-rvTtweZaGl1OeRQcVJKFxUgvUPmcM_2ik7SxPrsazeU88sjXUBAuiCguYSqUihYpRKMHMlGSpCyXZtAl2y-G3Va75brCbqRauBK4j4uXTuTrh086_0B86ijsu_ayn7KmIkDrYhzVfJlpikYnhF6F54HrNgwePvMwkvmEFsHdfOrNY"},{"header":{"kid":"webstore"},"protected":"eyJhbGciOiJSUzI1NiJ9","signature":"DVeoYsZMxDIPF5S8O3UwsgL2I_2bcuWI3tAPTvAb9hhnn8pXlOnQzSmg43nTDh7aWDED-toZiWpEHayJldSW2z69-P9hOyaN_2UKTJmXyzhQSR10SzhiS608kM3Pl1eVsbe1xPyfFt21stjvr1tVm1xIFaI8Jzuu-4m4Q610uuxlsw5ZdB1jMNINNtlsaj5UhBHjIAjEtzNrdZSU5JKlSXq__COrMR18V23gf0TjiOpToxZn0LOJu63hIsLHhuE4cSmdjM-pu4xrwmCSSG61_vI7FQhwmxr1rdJLmieD3r795mKLJlY50LYtOs2RYQEfLjU11DbP-527Z_bO4iS3Tg"}]}}] \ No newline at end of file diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/TrustTokenKeyCommitments/2026.3.23.1/keys.json b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/TrustTokenKeyCommitments/2026.3.23.1/keys.json new file mode 100644 index 0000000..a1fd867 --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/TrustTokenKeyCommitments/2026.3.23.1/keys.json @@ -0,0 +1 @@ +{"https://issuer.captchafox.com":{"PrivateStateTokenV1VOPRF":{"batchsize":1,"id":1,"keys":{"0":{"Y":"AAAAAQQiyE+SESbq7GU5rTx6tZO4tBOxljp+Oya2mU28O+YoALIyXlLLqnl/h5h95ExYSsOlmMIb8EdsJBTrCaDl/KIZSskrfMbZpjhShG0jwnbXojEHI9WaAxKLkX/A/DkyMEg=","expiry":"1734807628115000"},"1":{"Y":"AAAAAQRNtld+5LLBquS4bEJKJwlLw61tzIyqTNkvMVnUTu+YiphbdGrRCjeDTN9D3p1Tgpfmq0N/OKMBYWzDMEN8Km9p9s49c6N2ph4B1MV1m7Ogdj969MOsTw54Kc849oqDl8s=","expiry":"1734807628115000"},"2":{"Y":"AAAAAQSBWW003A3ORFURCZrWNnbEIH15yzk184DaLSebbGzRdyCYtAM1qhhVmXZyBtWTzh6Bfkk5rLPyE1xdQilofPBizF/QJsdaMU0GYhPW1sOU4xoKbmgd/XrnOoFqA2ETOuc=","expiry":"1734807628115000"},"3":{"Y":"AAAAAQSG/ftGdm5B6iwAmVsHt6s43xx3nRf/Vpx9GdeEt3jSTM8hHvyLE9FAEkinGjt4Fp5EjnkCdE96Cxz10nZJRrMApIrGhG5kAoDu4T8PjJPiFQFyHAOdTG7OJWi2NS/rl1A=","expiry":"1734807628115000"},"4":{"Y":"AAAAAQT36tqe550UP5A+4Eokt8iuPZEuWQc9cGJXd7zUCZzrsqtGu3PMcVbOj5DjC4W+yoyF3HqKOqdtiBWgcMsZOcyln/6jUKqf5tS9AoIHa9CC3kQB8ISQd3lhR5j+qWVY8ms=","expiry":"1734807628115000"},"5":{"Y":"AAAAAQQMjaLNCR8+YpP7wuJc8LswYI6Lofx+FIzgc3YRXAZg1xPVUR0PanCmne8q9vAPJHXrHwpytYAO/p+7wy+7pV9OGY8S3atKypUVBKa/1+jo7pokpuI0OQKFWtEOZBaM0Hw=","expiry":"1734807628115000"}},"protocol_version":"PrivateStateTokenV1VOPRF"}},"https://my.contentpass.net":{"PrivateStateTokenV1VOPRF":{"batchsize":1,"id":1,"keys":{"1":{"Y":"AAAAAQSf54hDCPXvAfUGtHrxk8Wh3Xz5ojzIZL92OEMw8+1kZ9mXgHPTsInoWDEYroazoszJ8uJxsRUFA5+7V6ZzFOS7eISbYKQsjWZ0Ke2y4QpJqJkIqyI4VL7t2pg1ecaGC5M=","expiry":"1787615999000000"},"2":{"Y":"AAAAAQSE5dWqi59F+gqKzkvHifdLTNOquNCUdxEYQCOiqe575r6uF0DW9kOVO+jIgpu86Dg7xdUrzeoO8C6i3EGUtVY4wijUeEY/0hh1jLOMHcYlloPcEBo+Od+iPyynq6Cb11o=","expiry":"1787615999000000"},"3":{"Y":"AAAAAQQvUG/hrBtboBLDQTRvc2ZRo/Y+HceHJ+wP3U8irklIAi8tIwhJ6blzq2CI4oLCZrn/paxKTIJQfayrSBbH4euvixhvTg+p7gpWzi5RH+bo7BBb+c84T8+Wv/oofIWZNrI=","expiry":"1787615999000000"},"4":{"Y":"AAAAAQQEmTum5iqRCTnHSWmAlUQ2J5ozHTrZ3nU07O9Dg4/a2mkj64ykL4ClkWrerN0zUNQy6wqiGmhReXfsjpfV1NGcULJAZD+i+3W6kkzhJqdDzhdn0lrZmSZrxGTivYE0bR4=","expiry":"1787615999000000"},"5":{"Y":"AAAAAQRmL3mJryWwT1DLuxN5cA0Mt6yk2FHkh9XOiZ9m9jujvjikAStmwDo4YYatqyV0qGBx7xRPfqOpnRm61JEfpjWVDSuVYMOYK4Cavz+NmSf5bnkN/uFlThzzw4WSyn0i3aY=","expiry":"1787615999000000"},"6":{"Y":"AAAAAQSu1AVEWGbA17aWGZ9hp9wKOoIg59lB39ssOspo/AiCnmkfBWU8kKT3fuLHrKLfAc2djgGPx7BfAHvR6JHalxMfrfug750OGdEbQPcjgZVF1MFeiC4xV22QWdLbCOi5rLk=","expiry":"1787615999000000"}},"protocol_version":"PrivateStateTokenV1VOPRF"}},"https://privatetokens.dev":{"PrivateStateTokenV1VOPRF":{"batchsize":1,"id":1,"keys":{"0":{"Y":"AAAAAARfsssbDuePtDrNZ3lM/UURh5OQuxpiyHSHc1pdoKOlfZ1EEPEWMyjMs4RUBi04PGIH/2Ydu9DkhJBPOB8L3KvWrGzHY19bBVuYgypnPi1bFWV8FiVS7LTk4bQ6bUELZS8=","expiry":"1767139200000000"},"1":{"Y":"AAAAAQQf7weUF/kePEPj0OSOYXJFl5MtMxr8g0svnv/prKQJK/hXrKqyQCrfxWJaQcKvj0MqtJcAA0CMZUGO2+cEXXgVNsa9Rw3ozo5a69bRrcvwnu+DFfB/qrA+8vqB7HxSRyc=","expiry":"1767139200000000"},"2":{"Y":"AAAAAgQLbdTSLHbxKCt47+OFNTVxvvVenvsWvmB0GQrm0B7+fb+4Cr8DgkZ7O6cJ1XtJBN6pBocANfPtUMINbsFsrUrJILKj9zGuFbtlVUCnNTMxjgk6jhDGtvIrzoT2Tgj/Mqo=","expiry":"1767139200000000"},"3":{"Y":"AAAAAwSTuOrMb7Azhj0tzR0SBazJADihIRGWM3JMfCzAv38M7dAt3PrLa+yKQ2yJiyH43gbZo61I/AThxsw/55Bpo2mOZRfiRgYLiuuUceb5JJ69OLrkOuwAUyDJFsNGNXBy2m4=","expiry":"1767139200000000"},"4":{"Y":"AAAABASWQfNzun5KImUlkOvsg4iud4R4U+sOa2VjlUDMkrWB1S+q1qL/GuD3k687DQF/RfvbIbIeVkJZNyjobNqW7X4TsXU+lako/gxOBRqzl9aHaoMV9gk6EbvibY/XMD5AFDQ=","expiry":"1767139200000000"},"5":{"Y":"AAAABQR38by110bTSikIvk/oYI8eav69TFj3VrUNyc/Cj4dElEUIPqdpGUr2x+zH0vAs8+HD3lagql2JkzqncOEC5o6NX8bzWTTBxyNy7+uj9dYxy23jG0CFRxvJzLCRRTjuFZA=","expiry":"1767139200000000"}},"protocol_version":"PrivateStateTokenV1VOPRF"}},"https://pst-issuer.hcaptcha.com":{"PrivateStateTokenV1VOPRF":{"batchsize":1,"id":1,"keys":{"0":{"Y":"AAAAAAQn0iKkl4Xm6zKsIwQxrjdWuG5y1Dx/HhjZEzg5gzHs/bMzXRC4YqKI8JtrTOg1kzZLcQT4hDYmeuEnGZRSS4ZBtEVwnbk72AH9CB3041g+A2Y8AvXdrBZyBJaswydxU70=","expiry":"1691836104000000"},"102":{"Y":"AAAAZgStKBZhkdiDfCd2M72lOVQEm/8Gs8OokCr6q689DfraBUy2OAqS3fT3CRtHcIFsHHWTmFKfYNYbhDV9lOTeJiwGh/o2c5kSPczpgca9LEoJoNvCttwUfhzApxRQipTktSs=","expiry":"1699612104000000"},"118":{"Y":"AAAAdgTPJ4DSXNbDsSzd0lau1l+PDvS7j7rvWaXeb8Dq+bVbsHi49gWgtAmOvEhrx7qqlsMbowW9oFp+8hpMz0iPetfzNlpZ/rgchHMVGA2mAcUUD6hZpLFwi/WzzjPNzNjghiU=","expiry":"1694428104000000"},"134":{"Y":"AAAAhgQdOOxzj3+ff1GYbZKKas301vAlY5T1+HuRLecI7+aSpZHiJDLBId96+sYqFQ9Lw2v5ZL2XrdNsIjcJQeZjMNeoKzRIU2+twrJx15zOsAS7UYrnwmwcKUNaIvK5z+ofVao=","expiry":"1697020104000000"},"135":{"Y":"AAAAhwQ7lqyWJhRd1vwnfh9CTyEwAfvtHx8aM3kUzK4t1yjAde2H6ncqmaeSt0wCDHWQXRf+1t4qDjHDaVA6SsKUEmWNZrJ++q07cVNyg586fFJhklASuCAVD8MLgiI0joPbSmQ=","expiry":"1697020104000000"},"165":{"Y":"AAAApQT5FOfKepPac+BaNNEDET5ISLG0gRu76JnhDZgdCE4YGlZslfaxQxo2AB6dqWXUzCxgnidfjlVjDdCOQSYJDPFmE2rRGNMVpvHfZD4dKwwErc+oqvxsf+LIftX3DO1B+zg=","expiry":"1697020104000000"},"171":{"Y":"AAAAqwQ3VONsOHn8vztPDJugYiBknSk2h76L4m9v89gLbfK33SvUKB/D/oj7uIO3WHnOidaxdJ9tqhd4ee+EZ/cj7iV3b3cuBFqFEJPPUcHkNJ+FnU3fQmePRn0ZJGasPUCZNA8=","expiry":"1694428104000000"},"226":{"Y":"AAAA4gSl5pqFtr6FxLm5p9Pn7OjO7fH/rp25nZ/1qX6643BJcuWIC/Q1fc2v19bHZE6PNdLyMeO8ZMkRH5rRi3CX1xg54UWtX0b0/rFOy1ErX2nLDTDXJvSAMrbZZwuCDf/QkfA=","expiry":"1699612104000000"},"253":{"Y":"AAAA/QTFOMQlDqoIjS5e99cmi1xLcbcIyqfvzulldtB0PfoZAza6czULN9fKDfVXud74aOkzIDpDA7Ejx1Zw/2nr477EGpCeMmP9MXAxiaOroKI0kBd38uWTaqCxKmFcd/l16Ic=","expiry":"1699612104000000"},"29":{"Y":"AAAAHQSYqY3WA/Kuzh1J0w+YBfvx8tNECkbuRvKNvTCV/EYQh/O+tZQuROyFVk4M/vr2mw7yPK/dJhyl8FRMUSVvuQ7r/Y59fnNxyvPAdiKNeRlZb8TKs/Ymf0H9RLneFz3rOfM=","expiry":"1691836104000000"},"70":{"Y":"AAAARgT+F/qLdVCJZazqkgDgmbBY7DhDF78vsw6pfT6cGVAMfg4WhdkbQlLQkzKlPMVy0XsqyN2S2tSLa+0hFA4R8+YJpCYf9QJzg/XAw43fZkbu/TX7+q623KsQeWPMiuj9qAs=","expiry":"1694428104000000"},"87":{"Y":"AAAAVwSR0P31+cA6fOgTBHGN545mu5vLETOCgN2+6R8Wa8mmOl8QqvG5QJ8JRp6IiTXzJE8piCaKV9LKWw824abZzkxth/nsBD1zpBngEXq+pV9313owOkkyhfFYop9QBipxj9s=","expiry":"1691836104000000"}},"protocol_version":"PrivateStateTokenV1VOPRF"}},"https://pst.authfy.tech":{"PrivateStateTokenV1VOPRF":{"batchsize":1,"id":1,"keys":{"1":{"Y":"AAAAAQTGB+DcBu0tOGjsNGcx78cyXYSY00PwlVWb9KYMhKjtTNh4hOV38sFKGPJM3q2R4PWREwaVv0GhfH/ewJzx8AQnrXtXHM9q/gJS2NlhVHJ/v8lE9T31lA8IYA5qrNCdFAM=","expiry":"1722383999000000"},"2":{"Y":"AAAAAgSk04R1uzv+XeK/oSpt4dRquVrJxHSUv35gm6lNWKUlxoPBAOhYdtArOhpvFx7xCBRKhUy5m6bR/2APVwkM9bmaLbItpWqypvxILwqBJUmH4/6QLBZWWVB9vQSgxRWVaQw=","expiry":"1722383999000000"}},"protocol_version":"PrivateStateTokenV1VOPRF"}},"https://trusttoken.dev":{"PrivateStateTokenV1VOPRF":{"batchsize":1,"id":1,"keys":{"0":{"Y":"AAAAAARfsssbDuePtDrNZ3lM/UURh5OQuxpiyHSHc1pdoKOlfZ1EEPEWMyjMs4RUBi04PGIH/2Ydu9DkhJBPOB8L3KvWrGzHY19bBVuYgypnPi1bFWV8FiVS7LTk4bQ6bUELZS8=","expiry":"1767139200000000"},"1":{"Y":"AAAAAQQf7weUF/kePEPj0OSOYXJFl5MtMxr8g0svnv/prKQJK/hXrKqyQCrfxWJaQcKvj0MqtJcAA0CMZUGO2+cEXXgVNsa9Rw3ozo5a69bRrcvwnu+DFfB/qrA+8vqB7HxSRyc=","expiry":"1767139200000000"},"2":{"Y":"AAAAAgQLbdTSLHbxKCt47+OFNTVxvvVenvsWvmB0GQrm0B7+fb+4Cr8DgkZ7O6cJ1XtJBN6pBocANfPtUMINbsFsrUrJILKj9zGuFbtlVUCnNTMxjgk6jhDGtvIrzoT2Tgj/Mqo=","expiry":"1767139200000000"},"3":{"Y":"AAAAAwSTuOrMb7Azhj0tzR0SBazJADihIRGWM3JMfCzAv38M7dAt3PrLa+yKQ2yJiyH43gbZo61I/AThxsw/55Bpo2mOZRfiRgYLiuuUceb5JJ69OLrkOuwAUyDJFsNGNXBy2m4=","expiry":"1767139200000000"},"4":{"Y":"AAAABASWQfNzun5KImUlkOvsg4iud4R4U+sOa2VjlUDMkrWB1S+q1qL/GuD3k687DQF/RfvbIbIeVkJZNyjobNqW7X4TsXU+lako/gxOBRqzl9aHaoMV9gk6EbvibY/XMD5AFDQ=","expiry":"1767139200000000"},"5":{"Y":"AAAABQR38by110bTSikIvk/oYI8eav69TFj3VrUNyc/Cj4dElEUIPqdpGUr2x+zH0vAs8+HD3lagql2JkzqncOEC5o6NX8bzWTTBxyNy7+uj9dYxy23jG0CFRxvJzLCRRTjuFZA=","expiry":"1767139200000000"}},"protocol_version":"PrivateStateTokenV1VOPRF"}},"https://www.amazon.com":{"PrivateStateTokenV1VOPRF":{"batchsize":3,"id":2,"keys":{"0":{"Y":"AAAAAASYS4xoUXNZkFG9qw9D6tG414iVgVjLm8moh5c53vfSeUKnOEXtO+CL+FGCEYNh5xGEdkk6yfC9t5/MUkgJA6MwJ3Po7XwMkicnpGwR4mMiXTGCWiYK1FmU27ngETDxEfg=","expiry":"1811808000000000"},"1":{"Y":"AAAAAQTRulHfTLpd74bYeMAWlge1BTO+17QM7eBXsTAn4NAminHFWyw3mTrQCN1Hc+EZ17KJCi8gIQdk3JXHLD81PlsY8UBpAbjB0FyzLm7bWSpK3OnUnTiMNtN0698zLo4WD6s=","expiry":"1811808000000000"},"2":{"Y":"AAAAAgS7336yghS1ZxrDPkwQn3ozIpuKsPlC60mRnQnrL5Dek2drBidkLPTCT3X7wsqjVftFeAObr53x1m82m4D/BGctDLfgb74GOrlJjXPhFVLytRRn1SNfE9597e4zb16bens=","expiry":"1811808000000000"},"3":{"Y":"AAAAAwQSaa2zGmBBgZbHvtqe3YzSkWVErfvv7HCdtFGCJbW3+DZzgv8gi4S2Q/TL6cYlbNO6UILHl2GXJ0FzA6EcLQ1gmrjH6bEXH3NhDK/pu4Ryd5I/vZunHm8Z2Y4erRtzaWo=","expiry":"1811808000000000"},"4":{"Y":"AAAABASwJy8Xv9N6WehR8w/kFAWkNIAbaBydE9aCBrygVPgc9Z0J+WHj8on1YUkf0FFahc0Xjhrea50SLA66gibRx54d3/aUPx6f8Mc+uBwgTajtoBH4Kfb0rGXI7sRPokRBajs=","expiry":"1811808000000000"},"5":{"Y":"AAAABQTg74+7/u2f4azPVbI/3EB+u4w4EEI+Hdc7mkS4YYWR5PdU4osCQCevUpwAj4S0BG6sxVbABxw4nkkkBoTxUtGLVUWRXJ1Jdt051cfgrDHKs75odufr49rVjuJux4EjRfk=","expiry":"1811808000000000"}},"protocol_version":"PrivateStateTokenV1VOPRF"}}} \ No newline at end of file diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/TrustTokenKeyCommitments/2026.3.23.1/manifest.json b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/TrustTokenKeyCommitments/2026.3.23.1/manifest.json new file mode 100644 index 0000000..7106d92 --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/TrustTokenKeyCommitments/2026.3.23.1/manifest.json @@ -0,0 +1,5 @@ +{ + "manifest_version": 2, + "name": "trustToken", + "version": "2026.3.23.1" +} \ No newline at end of file diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Variations b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Variations new file mode 100644 index 0000000..18056c3 --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/Variations @@ -0,0 +1 @@ +{"user_experience_metrics.stability.exited_cleanly":true,"variations_crash_streak":0} \ No newline at end of file diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/component_crx_cache/000ac7dc9366969db9d1e41810a3a27c747a7623535d856eecc2de86cfed80c7 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/component_crx_cache/000ac7dc9366969db9d1e41810a3a27c747a7623535d856eecc2de86cfed80c7 new file mode 100644 index 0000000..0dcdae4 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/component_crx_cache/000ac7dc9366969db9d1e41810a3a27c747a7623535d856eecc2de86cfed80c7 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/component_crx_cache/68f081c49007522ff83daeee4add34836f1ec4f3b187f4f7419665f08525e588 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/component_crx_cache/68f081c49007522ff83daeee4add34836f1ec4f3b187f4f7419665f08525e588 new file mode 100644 index 0000000..13ed623 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/component_crx_cache/68f081c49007522ff83daeee4add34836f1ec4f3b187f4f7419665f08525e588 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/component_crx_cache/95fd9d48e4fc245a3f3a99a3a16ecd1355050ba3f4afc555f19a97c7f9b49677 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/component_crx_cache/95fd9d48e4fc245a3f3a99a3a16ecd1355050ba3f4afc555f19a97c7f9b49677 new file mode 100644 index 0000000..87ac989 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/component_crx_cache/95fd9d48e4fc245a3f3a99a3a16ecd1355050ba3f4afc555f19a97c7f9b49677 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/component_crx_cache/a922b7d113e67ce71528805d3c6780f7a207cada8ad56642047577358e46ba3d b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/component_crx_cache/a922b7d113e67ce71528805d3c6780f7a207cada8ad56642047577358e46ba3d new file mode 100644 index 0000000..c36cdc1 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/component_crx_cache/a922b7d113e67ce71528805d3c6780f7a207cada8ad56642047577358e46ba3d differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/component_crx_cache/bec8ead1da3c9600fe66bbcc0e7a9bed9a184c1be821b4d23570c6b7af7f0410 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/component_crx_cache/bec8ead1da3c9600fe66bbcc0e7a9bed9a184c1be821b4d23570c6b7af7f0410 new file mode 100644 index 0000000..0f2f991 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/component_crx_cache/bec8ead1da3c9600fe66bbcc0e7a9bed9a184c1be821b4d23570c6b7af7f0410 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/component_crx_cache/e49e08605c0aef671657dd880b748c1d0cc4887972b65a68e40e93b329056e51 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/component_crx_cache/e49e08605c0aef671657dd880b748c1d0cc4887972b65a68e40e93b329056e51 new file mode 100644 index 0000000..b7218be Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/component_crx_cache/e49e08605c0aef671657dd880b748c1d0cc4887972b65a68e40e93b329056e51 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/component_crx_cache/fa29a6d5775ff340900a65b39b02fc8b4b77d403c048d8debf22f2f5d09c61a0 b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/component_crx_cache/fa29a6d5775ff340900a65b39b02fc8b4b77d403c048d8debf22f2f5d09c61a0 new file mode 100644 index 0000000..520d671 Binary files /dev/null and b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/component_crx_cache/fa29a6d5775ff340900a65b39b02fc8b4b77d403c048d8debf22f2f5d09c61a0 differ diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/component_crx_cache/metadata.json b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/component_crx_cache/metadata.json new file mode 100644 index 0000000..3296a7a --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/component_crx_cache/metadata.json @@ -0,0 +1 @@ +{"hashes":{"000ac7dc9366969db9d1e41810a3a27c747a7623535d856eecc2de86cfed80c7":{"appid":"eeobbhfgfagbclfofmgbdfoicabjdbkn","fp":""},"68f081c49007522ff83daeee4add34836f1ec4f3b187f4f7419665f08525e588":{"appid":"jbfaflocpnkhbgcijpkiafdpbjkedane","fp":""},"95fd9d48e4fc245a3f3a99a3a16ecd1355050ba3f4afc555f19a97c7f9b49677":{"appid":"ohckeflnhegojcjlcpbfpciadgikcohk","fp":""},"a922b7d113e67ce71528805d3c6780f7a207cada8ad56642047577358e46ba3d":{"appid":"fgbafbciocncjfbbonhocjaohoknlaco","fp":""},"bec8ead1da3c9600fe66bbcc0e7a9bed9a184c1be821b4d23570c6b7af7f0410":{"appid":"alpjnmnfbgfkmmpcfpejmmoebdndedno","fp":""},"e49e08605c0aef671657dd880b748c1d0cc4887972b65a68e40e93b329056e51":{"appid":"pghocgajpebopihickglahgebcmkcekh","fp":""},"fa29a6d5775ff340900a65b39b02fc8b4b77d403c048d8debf22f2f5d09c61a0":{"appid":"oankkpibpaokgecfckkdkgaoafllipag","fp":""}}} \ No newline at end of file diff --git a/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/extensions_crx_cache/metadata.json b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/extensions_crx_cache/metadata.json new file mode 100644 index 0000000..4d15610 --- /dev/null +++ b/bin/Debug/net10.0-windows/Vmianqian.exe.WebView2/EBWebView/extensions_crx_cache/metadata.json @@ -0,0 +1 @@ +{"hashes":{}} \ No newline at end of file diff --git a/bin/Debug/net10.0-windows/Vmianqian.pdb b/bin/Debug/net10.0-windows/Vmianqian.pdb index a0d6914..a9880d4 100644 Binary files a/bin/Debug/net10.0-windows/Vmianqian.pdb and b/bin/Debug/net10.0-windows/Vmianqian.pdb differ diff --git a/bin/Debug/net10.0-windows/appsettings.client.json b/bin/Debug/net10.0-windows/appsettings.client.json index dbf5126..760dd87 100644 --- a/bin/Debug/net10.0-windows/appsettings.client.json +++ b/bin/Debug/net10.0-windows/appsettings.client.json @@ -7,16 +7,17 @@ "NotifyEmail": "1066960883@qq.com", "EmailAuthCode": "TPPMKSMvCadyzu3m", "WechatPath": "C:\\Softwares\\Tencent\\Weixin\\Weixin.exe", - "WechatSid": "AAEtSt7xaW0QXPhIoqOM06pwoIyXWmy1u8jFoBF83zvIjA", + "WechatSid": "AAHhwahUM3etjBpBQ-qeuaAZ9RF_NLJRg-ljztn_3qLcCQ", "WechatApiVersion": "7.10.2", - "AlipayPath": "", + "AlipayPath": "https://consumeprod.alipay.com/record/advanced.htm", + "AlipayBillApiUrl": "https://consumeprod.alipay.com/record/advanced.htm", "AlipayAppId": "", "AlipayUserId": "", "ListenPort": 8989, "WechatIntervalSeconds": 5, - "AlipayIntervalSeconds": 5, + "AlipayIntervalSeconds": 15, "EnableWheelPolling": true, - "EnableHeartbeat": false, - "HeartbeatIntervalSeconds": 30, + "EnableHeartbeat": true, + "HeartbeatIntervalSeconds": 10, "ListenPath": "/notify/" } \ No newline at end of file diff --git a/bin/Debug/net10.0-windows/pending-orders.client.json b/bin/Debug/net10.0-windows/pending-orders.client.json index ad47dbb..9abc6e8 100644 --- a/bin/Debug/net10.0-windows/pending-orders.client.json +++ b/bin/Debug/net10.0-windows/pending-orders.client.json @@ -1 +1,16 @@ -[] \ No newline at end of file +[ + { + "OrderId": "202605070105294312", + "PayId": "2026050701002863867", + "Param": "MBSI70BBVRCGHU0K", + "PayType": 2, + "Price": 0.1, + "ReallyPrice": 0.1, + "TimeOut": 5, + "State": 1, + "Date": 1778086829, + "RegisteredAt": "2026-05-07T01:00:50.9448888+08:00", + "CompletedAt": "2026-05-07T01:00:51.3503482+08:00", + "TradeNo": "2026050722001409341411855749" + } +] \ No newline at end of file diff --git a/bin/Debug/net10.0-windows/runtimes/win-arm64/native/WebView2Loader.dll b/bin/Debug/net10.0-windows/runtimes/win-arm64/native/WebView2Loader.dll new file mode 100644 index 0000000..ff13a17 Binary files /dev/null and b/bin/Debug/net10.0-windows/runtimes/win-arm64/native/WebView2Loader.dll differ diff --git a/bin/Debug/net10.0-windows/runtimes/win-x64/native/WebView2Loader.dll b/bin/Debug/net10.0-windows/runtimes/win-x64/native/WebView2Loader.dll new file mode 100644 index 0000000..983ee32 Binary files /dev/null and b/bin/Debug/net10.0-windows/runtimes/win-x64/native/WebView2Loader.dll differ diff --git a/bin/Debug/net10.0-windows/runtimes/win-x86/native/WebView2Loader.dll b/bin/Debug/net10.0-windows/runtimes/win-x86/native/WebView2Loader.dll new file mode 100644 index 0000000..a8565ba Binary files /dev/null and b/bin/Debug/net10.0-windows/runtimes/win-x86/native/WebView2Loader.dll differ diff --git a/obj/Debug/net10.0-windows/Vmianqian.AssemblyInfo.cs b/obj/Debug/net10.0-windows/Vmianqian.AssemblyInfo.cs index 1dc683b..073af4b 100644 --- a/obj/Debug/net10.0-windows/Vmianqian.AssemblyInfo.cs +++ b/obj/Debug/net10.0-windows/Vmianqian.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Vmianqian")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+4cf9bb67de2f0045bfce5eba6a0132e5e6eed268")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+6fb40a7689b5db8902ca50394f29517e5bdc4108")] [assembly: System.Reflection.AssemblyProductAttribute("Vmianqian")] [assembly: System.Reflection.AssemblyTitleAttribute("Vmianqian")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/obj/Debug/net10.0-windows/Vmianqian.AssemblyInfoInputs.cache b/obj/Debug/net10.0-windows/Vmianqian.AssemblyInfoInputs.cache index ab881df..0d1ebc2 100644 --- a/obj/Debug/net10.0-windows/Vmianqian.AssemblyInfoInputs.cache +++ b/obj/Debug/net10.0-windows/Vmianqian.AssemblyInfoInputs.cache @@ -1 +1 @@ -145dcc92c0e221c03b00a4fb64fac367600cb39a2e7c265091ac9bb60ccf58c0 +5d9c659649f82a6db3033ce25ce5f2cd30abeb96072a886181b61b685af63a8c diff --git a/obj/Debug/net10.0-windows/Vmianqian.assets.cache b/obj/Debug/net10.0-windows/Vmianqian.assets.cache index 3e22c28..4ec8c4e 100644 Binary files a/obj/Debug/net10.0-windows/Vmianqian.assets.cache and b/obj/Debug/net10.0-windows/Vmianqian.assets.cache differ diff --git a/obj/Debug/net10.0-windows/Vmianqian.csproj.AssemblyReference.cache b/obj/Debug/net10.0-windows/Vmianqian.csproj.AssemblyReference.cache index 5bc0854..14c28a0 100644 Binary files a/obj/Debug/net10.0-windows/Vmianqian.csproj.AssemblyReference.cache and b/obj/Debug/net10.0-windows/Vmianqian.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net10.0-windows/Vmianqian.csproj.CoreCompileInputs.cache b/obj/Debug/net10.0-windows/Vmianqian.csproj.CoreCompileInputs.cache index 1ad1f25..ac1d08f 100644 --- a/obj/Debug/net10.0-windows/Vmianqian.csproj.CoreCompileInputs.cache +++ b/obj/Debug/net10.0-windows/Vmianqian.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -42d38a7275d963e9940e89dd19bb6cb55b601c9c3bcf43ecf6ffc1df4b96ac27 +a200812809a6c12e0e5a805bae74d188c7782b566b9e1e93bf9af5062674a65d diff --git a/obj/Debug/net10.0-windows/Vmianqian.csproj.FileListAbsolute.txt b/obj/Debug/net10.0-windows/Vmianqian.csproj.FileListAbsolute.txt index 181338b..c746bcc 100644 --- a/obj/Debug/net10.0-windows/Vmianqian.csproj.FileListAbsolute.txt +++ b/obj/Debug/net10.0-windows/Vmianqian.csproj.FileListAbsolute.txt @@ -68,3 +68,12 @@ E:\Demo\C\Vmianqian\obj\Debug\net10.0-windows\ref\Vmianqian.dll E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\BrotliSharpLib.dll E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\BouncyCastle.Crypto.dll E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\Titanium.Web.Proxy.dll +E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\runtimes\win-x86\native\WebView2Loader.dll +E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\runtimes\win-x64\native\WebView2Loader.dll +E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\runtimes\win-arm64\native\WebView2Loader.dll +E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\Microsoft.Web.WebView2.Core.dll +E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\Microsoft.Web.WebView2.WinForms.dll +E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\Microsoft.Web.WebView2.Wpf.dll +E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\Microsoft.Web.WebView2.Core.xml +E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\Microsoft.Web.WebView2.WinForms.xml +E:\Demo\C\Vmianqian\bin\Debug\net10.0-windows\Microsoft.Web.WebView2.Wpf.xml diff --git a/obj/Debug/net10.0-windows/Vmianqian.csproj.GenerateResource.cache b/obj/Debug/net10.0-windows/Vmianqian.csproj.GenerateResource.cache index a654658..470b591 100644 Binary files a/obj/Debug/net10.0-windows/Vmianqian.csproj.GenerateResource.cache and b/obj/Debug/net10.0-windows/Vmianqian.csproj.GenerateResource.cache differ diff --git a/obj/Debug/net10.0-windows/Vmianqian.designer.deps.json b/obj/Debug/net10.0-windows/Vmianqian.designer.deps.json index 5948ab0..4d3a676 100644 --- a/obj/Debug/net10.0-windows/Vmianqian.designer.deps.json +++ b/obj/Debug/net10.0-windows/Vmianqian.designer.deps.json @@ -41,6 +41,25 @@ } } }, + "Microsoft.Web.WebView2/1.0.2903.40": { + "runtimeTargets": { + "runtimes/win-arm64/native/WebView2Loader.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "1.0.2903.40" + }, + "runtimes/win-x64/native/WebView2Loader.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "1.0.2903.40" + }, + "runtimes/win-x86/native/WebView2Loader.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "1.0.2903.40" + } + } + }, "MimeKit/4.16.0": { "dependencies": { "BouncyCastle.Cryptography": "2.6.2" @@ -103,6 +122,13 @@ "path": "mailkit/4.16.0", "hashPath": "mailkit.4.16.0.nupkg.sha512" }, + "Microsoft.Web.WebView2/1.0.2903.40": { + "type": "package", + "serviceable": true, + "sha512": "sha512-THrzYAnJgE3+cNH+9Epr44XjoZoRELdVpXlWGPs6K9C9G6TqyDfVCeVAR/Er8ljLitIUX5gaSkPsy9wRhD1sgQ==", + "path": "microsoft.web.webview2/1.0.2903.40", + "hashPath": "microsoft.web.webview2.1.0.2903.40.nupkg.sha512" + }, "MimeKit/4.16.0": { "type": "package", "serviceable": true, diff --git a/obj/Debug/net10.0-windows/Vmianqian.dll b/obj/Debug/net10.0-windows/Vmianqian.dll index ba907b0..4851cfb 100644 Binary files a/obj/Debug/net10.0-windows/Vmianqian.dll and b/obj/Debug/net10.0-windows/Vmianqian.dll differ diff --git a/obj/Debug/net10.0-windows/Vmianqian.pdb b/obj/Debug/net10.0-windows/Vmianqian.pdb index a0d6914..a9880d4 100644 Binary files a/obj/Debug/net10.0-windows/Vmianqian.pdb and b/obj/Debug/net10.0-windows/Vmianqian.pdb differ diff --git a/obj/Debug/net10.0-windows/apphost.exe b/obj/Debug/net10.0-windows/apphost.exe index 4451148..ab4d2ff 100644 Binary files a/obj/Debug/net10.0-windows/apphost.exe and b/obj/Debug/net10.0-windows/apphost.exe differ diff --git a/obj/Debug/net10.0-windows/ref/Vmianqian.dll b/obj/Debug/net10.0-windows/ref/Vmianqian.dll index 9fcdbde..018ee96 100644 Binary files a/obj/Debug/net10.0-windows/ref/Vmianqian.dll and b/obj/Debug/net10.0-windows/ref/Vmianqian.dll differ diff --git a/obj/Debug/net10.0-windows/refint/Vmianqian.dll b/obj/Debug/net10.0-windows/refint/Vmianqian.dll index 9fcdbde..018ee96 100644 Binary files a/obj/Debug/net10.0-windows/refint/Vmianqian.dll and b/obj/Debug/net10.0-windows/refint/Vmianqian.dll differ diff --git a/obj/Vmianqian.csproj.nuget.dgspec.json b/obj/Vmianqian.csproj.nuget.dgspec.json index fe67b93..f2dd756 100644 --- a/obj/Vmianqian.csproj.nuget.dgspec.json +++ b/obj/Vmianqian.csproj.nuget.dgspec.json @@ -30,7 +30,8 @@ "https://api.nuget.org/v3/index.json": {} }, "frameworks": { - "net10.0-windows7.0": { + "net10.0-windows": { + "framework": "net10.0-windows7.0", "targetAlias": "net10.0-windows", "projectReferences": {} } @@ -48,7 +49,8 @@ "SdkAnalysisLevel": "10.0.200" }, "frameworks": { - "net10.0-windows7.0": { + "net10.0-windows": { + "framework": "net10.0-windows7.0", "targetAlias": "net10.0-windows", "dependencies": { "AntdUI": { @@ -59,6 +61,10 @@ "target": "Package", "version": "[4.16.0, )" }, + "Microsoft.Web.WebView2": { + "target": "Package", + "version": "[1.0.2903.40, )" + }, "Titanium.Web.Proxy": { "target": "Package", "version": "[3.2.0, )" diff --git a/obj/Vmianqian.csproj.nuget.g.props b/obj/Vmianqian.csproj.nuget.g.props index 4969686..beb944b 100644 --- a/obj/Vmianqian.csproj.nuget.g.props +++ b/obj/Vmianqian.csproj.nuget.g.props @@ -13,4 +13,7 @@ + + C:\Users\Administrator\.nuget\packages\microsoft.web.webview2\1.0.2903.40 + \ No newline at end of file diff --git a/obj/Vmianqian.csproj.nuget.g.targets b/obj/Vmianqian.csproj.nuget.g.targets index 3dc06ef..060e6d3 100644 --- a/obj/Vmianqian.csproj.nuget.g.targets +++ b/obj/Vmianqian.csproj.nuget.g.targets @@ -1,2 +1,6 @@  - \ No newline at end of file + + + + + \ No newline at end of file diff --git a/obj/project.assets.json b/obj/project.assets.json index dc66fe4..45007ad 100644 --- a/obj/project.assets.json +++ b/obj/project.assets.json @@ -60,6 +60,26 @@ } } }, + "Microsoft.Web.WebView2/1.0.2903.40": { + "type": "package", + "build": { + "buildTransitive/Microsoft.Web.WebView2.targets": {} + }, + "runtimeTargets": { + "runtimes/win-arm64/native/WebView2Loader.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/WebView2Loader.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/WebView2Loader.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, "MimeKit/4.16.0": { "type": "package", "dependencies": { @@ -223,6 +243,103 @@ "mailkit.nuspec" ] }, + "Microsoft.Web.WebView2/1.0.2903.40": { + "sha512": "THrzYAnJgE3+cNH+9Epr44XjoZoRELdVpXlWGPs6K9C9G6TqyDfVCeVAR/Er8ljLitIUX5gaSkPsy9wRhD1sgQ==", + "type": "package", + "path": "microsoft.web.webview2/1.0.2903.40", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "NOTICE.txt", + "WebView2.idl", + "WebView2.tlb", + "build/Common.targets", + "build/Microsoft.Web.WebView2.targets", + "build/WebView2Rules.Project.xml", + "build/native/Microsoft.Web.WebView2.targets", + "build/native/arm64/WebView2Loader.dll", + "build/native/arm64/WebView2Loader.dll.lib", + "build/native/arm64/WebView2LoaderStatic.lib", + "build/native/include-winrt/WebView2Interop.h", + "build/native/include-winrt/WebView2Interop.idl", + "build/native/include-winrt/WebView2Interop.tlb", + "build/native/include/WebView2.h", + "build/native/include/WebView2EnvironmentOptions.h", + "build/native/x64/WebView2Loader.dll", + "build/native/x64/WebView2Loader.dll.lib", + "build/native/x64/WebView2LoaderStatic.lib", + "build/native/x86/WebView2Loader.dll", + "build/native/x86/WebView2Loader.dll.lib", + "build/native/x86/WebView2LoaderStatic.lib", + "build/wv2winrt.targets", + "buildTransitive/Microsoft.Web.WebView2.targets", + "lib/Microsoft.Web.WebView2.Core.winmd", + "lib/net462/Microsoft.Web.WebView2.Core.dll", + "lib/net462/Microsoft.Web.WebView2.Core.xml", + "lib/net462/Microsoft.Web.WebView2.WinForms.dll", + "lib/net462/Microsoft.Web.WebView2.WinForms.xml", + "lib/net462/Microsoft.Web.WebView2.Wpf.dll", + "lib/net462/Microsoft.Web.WebView2.Wpf.xml", + "lib_manual/net5.0-windows10.0.17763.0/Microsoft.Web.WebView2.Wpf.dll", + "lib_manual/net5.0-windows10.0.17763.0/Microsoft.Web.WebView2.Wpf.xml", + "lib_manual/net6.0-windows10.0.17763.0/Microsoft.Web.WebView2.Core.Projection.dll", + "lib_manual/net8.0-windows10.0.17763.0/Microsoft.Web.WebView2.Core.Projection.dll", + "lib_manual/netcoreapp3.0/Microsoft.Web.WebView2.Core.dll", + "lib_manual/netcoreapp3.0/Microsoft.Web.WebView2.Core.xml", + "lib_manual/netcoreapp3.0/Microsoft.Web.WebView2.WinForms.dll", + "lib_manual/netcoreapp3.0/Microsoft.Web.WebView2.WinForms.xml", + "lib_manual/netcoreapp3.0/Microsoft.Web.WebView2.Wpf.dll", + "lib_manual/netcoreapp3.0/Microsoft.Web.WebView2.Wpf.xml", + "microsoft.web.webview2.1.0.2903.40.nupkg.sha512", + "microsoft.web.webview2.nuspec", + "runtimes/win-arm64/native/WebView2Loader.dll", + "runtimes/win-arm64/native_uap/Microsoft.Web.WebView2.Core.dll", + "runtimes/win-x64/native/WebView2Loader.dll", + "runtimes/win-x64/native_uap/Microsoft.Web.WebView2.Core.dll", + "runtimes/win-x86/native/WebView2Loader.dll", + "runtimes/win-x86/native_uap/Microsoft.Web.WebView2.Core.dll", + "tools/VisualStudioToolsManifest.xml", + "tools/wv2winrt/Antlr3.Runtime.dll", + "tools/wv2winrt/Antlr4.StringTemplate.dll", + "tools/wv2winrt/System.Buffers.dll", + "tools/wv2winrt/System.CommandLine.DragonFruit.dll", + "tools/wv2winrt/System.CommandLine.Rendering.dll", + "tools/wv2winrt/System.CommandLine.dll", + "tools/wv2winrt/System.Memory.dll", + "tools/wv2winrt/System.Numerics.Vectors.dll", + "tools/wv2winrt/System.Runtime.CompilerServices.Unsafe.dll", + "tools/wv2winrt/codegen_util.dll", + "tools/wv2winrt/concrt140_app.dll", + "tools/wv2winrt/cs/System.CommandLine.resources.dll", + "tools/wv2winrt/de/System.CommandLine.resources.dll", + "tools/wv2winrt/es/System.CommandLine.resources.dll", + "tools/wv2winrt/fr/System.CommandLine.resources.dll", + "tools/wv2winrt/it/System.CommandLine.resources.dll", + "tools/wv2winrt/ja/System.CommandLine.resources.dll", + "tools/wv2winrt/ko/System.CommandLine.resources.dll", + "tools/wv2winrt/msvcp140_1_app.dll", + "tools/wv2winrt/msvcp140_2_app.dll", + "tools/wv2winrt/msvcp140_app.dll", + "tools/wv2winrt/pl/System.CommandLine.resources.dll", + "tools/wv2winrt/pt-BR/System.CommandLine.resources.dll", + "tools/wv2winrt/ru/System.CommandLine.resources.dll", + "tools/wv2winrt/tr/System.CommandLine.resources.dll", + "tools/wv2winrt/type_hierarchy.dll", + "tools/wv2winrt/vcamp140_app.dll", + "tools/wv2winrt/vccorlib140_app.dll", + "tools/wv2winrt/vcomp140_app.dll", + "tools/wv2winrt/vcruntime140_app.dll", + "tools/wv2winrt/winrt_winmd.dll", + "tools/wv2winrt/winrt_winmd.winmd", + "tools/wv2winrt/wv2winrt.exe", + "tools/wv2winrt/wv2winrt.exe.config", + "tools/wv2winrt/wv2winrt.xml", + "tools/wv2winrt/zh-Hans/System.CommandLine.resources.dll", + "tools/wv2winrt/zh-Hant/System.CommandLine.resources.dll" + ] + }, "MimeKit/4.16.0": { "sha512": "X0LFxeM4gPRIhODyY/HYS9b+zRZ7y//v59rFzgS6wLxcPuZThnMtNZHtrr0fjLyRRkg3gqJBtvW36XfUzZ7Djw==", "type": "package", @@ -297,6 +414,7 @@ "net10.0-windows7.0": [ "AntdUI >= 2.3.10", "MailKit >= 4.16.0", + "Microsoft.Web.WebView2 >= 1.0.2903.40", "Titanium.Web.Proxy >= 3.2.0" ] }, @@ -331,6 +449,7 @@ }, "frameworks": { "net10.0-windows7.0": { + "framework": "net10.0-windows7.0", "targetAlias": "net10.0-windows", "projectReferences": {} } @@ -349,6 +468,7 @@ }, "frameworks": { "net10.0-windows7.0": { + "framework": "net10.0-windows7.0", "targetAlias": "net10.0-windows", "dependencies": { "AntdUI": { @@ -359,6 +479,10 @@ "target": "Package", "version": "[4.16.0, )" }, + "Microsoft.Web.WebView2": { + "target": "Package", + "version": "[1.0.2903.40, )" + }, "Titanium.Web.Proxy": { "target": "Package", "version": "[3.2.0, )" diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache index 1b261fc..30738bf 100644 --- a/obj/project.nuget.cache +++ b/obj/project.nuget.cache @@ -1,6 +1,6 @@ { "version": 2, - "dgSpecHash": "YN2dWMlZUlg=", + "dgSpecHash": "bRNLvl20a88=", "success": true, "projectFilePath": "E:\\Demo\\C\\Vmianqian\\Vmianqian.csproj", "expectedPackageFiles": [ @@ -8,6 +8,7 @@ "C:\\Users\\Administrator\\.nuget\\packages\\bouncycastle.cryptography\\2.6.2\\bouncycastle.cryptography.2.6.2.nupkg.sha512", "C:\\Users\\Administrator\\.nuget\\packages\\brotlisharplib\\0.3.3\\brotlisharplib.0.3.3.nupkg.sha512", "C:\\Users\\Administrator\\.nuget\\packages\\mailkit\\4.16.0\\mailkit.4.16.0.nupkg.sha512", + "C:\\Users\\Administrator\\.nuget\\packages\\microsoft.web.webview2\\1.0.2903.40\\microsoft.web.webview2.1.0.2903.40.nupkg.sha512", "C:\\Users\\Administrator\\.nuget\\packages\\mimekit\\4.16.0\\mimekit.4.16.0.nupkg.sha512", "C:\\Users\\Administrator\\.nuget\\packages\\portable.bouncycastle\\1.8.8\\portable.bouncycastle.1.8.8.nupkg.sha512", "C:\\Users\\Administrator\\.nuget\\packages\\titanium.web.proxy\\3.2.0\\titanium.web.proxy.3.2.0.nupkg.sha512"