コード例 #1
0
ファイル: HttpApi.cs プロジェクト: xier2012/aspnetcore
        internal static bool IsFeatureSupported(HTTP_FEATURE_ID feature)
        {
            try
            {
                return(HttpIsFeatureSupported(feature));
            }
            catch (EntryPointNotFoundException) { }

            return(false);
        }
コード例 #2
0
ファイル: HttpApi.cs プロジェクト: xier2012/aspnetcore
 internal static extern bool HttpIsFeatureSupported(HTTP_FEATURE_ID feature);
コード例 #3
0
ファイル: HttpApi.cs プロジェクト: tarynt/AspNetCore
 internal static partial bool HttpIsFeatureSupported(HTTP_FEATURE_ID feature);