mirror of
https://github.com/2dust/v2rayN.git
synced 2025-12-10 13:30:21 +05:00
10 lines
206 B
C#
10 lines
206 B
C#
namespace ServiceLib.Handler.Fmt;
|
|
|
|
public class HtmlPageFmt : BaseFmt
|
|
{
|
|
public static bool IsHtmlPage(string strData)
|
|
{
|
|
return Contains(strData, "<html", "<!doctype html", "<head");
|
|
}
|
|
}
|