C# program to check whether a given Uri is accessed through http protocol
using System;
class UriExample
{
//Entry point of Program
static public void Main()
{
Uri uriAddress = new Uri("http://www.includehelp.com/");
Console.WriteLine(uriAddress.Scheme);
Console.WriteLine(Uri.UriSchemeHttp);
if (uriAddress.Scheme == Uri.UriSchemeHttp)
Console.WriteLine("Given Uri is access through http protocol");
}
}
http
http
Given Uri is access through http protocol
Press any key to continue . . .
Table of Contents