C#检查系统是否支持HttpListener
// 检查系统是否支持
if (!HttpListener.IsSupported)
{
throw new System.InvalidOperationException("必须为 Windows XP SP2 或 Server 2003 以上系统!");
}
C#检查系统是否支持HttpListener
// 检查系统是否支持
if (!HttpListener.IsSupported)
{
throw new System.InvalidOperationException("必须为 Windows XP SP2 或 Server 2003 以上系统!");
}
发表回复