System.Uri.IsIntranet C# (CSharp) Метод

IsIntranet() приватный Метод

private IsIntranet ( string schemeHost ) : bool
schemeHost string
Результат bool
        private bool IsIntranet(string schemeHost)
        {
            // .NET Native/CoreCLR behavior difference: all URI/IRIs will be treated as Internet.
            return false;
        }