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;
        }