System.Uri.IsIntranet C# (CSharp) Method

IsIntranet() private method

private IsIntranet ( string schemeHost ) : bool
schemeHost string
return bool
        private bool IsIntranet(string schemeHost)
        {
            // .NET Native/CoreCLR behavior difference: all URI/IRIs will be treated as Internet.
            return false;
        }