提交当前本机整理版本

This commit is contained in:
cyf
2026-07-02 10:11:39 +00:00
parent c10a5d64c7
commit aacefa24f8
822 changed files with 196665 additions and 14263 deletions
+44 -1
View File
@@ -1098,4 +1098,47 @@ namespace Lskj.MiniBlink
return InvokeJSW("return document.documentElement.outerHTML").ToString();
}
else
{
return string.Empty;
}
}
set
{
if (handle != IntPtr.Zero)
{
BlinkBrowserPInvoke.wkeLoadHTMLW(this.handle, value);
}
}
}
public string Url
{
get { return url; }
set
{
url = value;
if (handle != IntPtr.Zero)
{
BlinkBrowserPInvoke.wkeLoadURLW(handle, url);
}
}
}
public string Cookies
{
get
{
if (handle != IntPtr.Zero)
{
return BlinkBrowserPInvoke.Utf8IntptrToString(BlinkBrowserPInvoke.wkeGetCookie(handle));
}
else
{
return string.Empty;
}
}
}
}
}