예제 #1
0
        public void IsNotSameHost()
        {
            Uri test  = new Uri("https://url.com/path/file.zip?cb=1");
            Uri test2 = new Uri("https://lru.com/path/file.zip?cb=1");

            Assert.False(UriExtensions.IsSameHost(test, test2));
        }