mirror of
https://github.com/2dust/v2rayN.git
synced 2025-09-17 23:43:05 +00:00
9 lines
206 B
C#
9 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");
|
|
}
|
|
}
|