C# program to check whether a given Uri is accessed through http protocol

Here, we are going to learn how to check whether a given Uri is accessed through http protocol in C#.Net?
Submitted by Nidhi, on April 14, 2021

Here, we will learn how to check given Uri is accessed through http protocol. Here we will use a static property UriSchemeHttp of Uri class that specifies Uri is accessed through http protocol. UriSchemeHttp is a read-only property. And we use an instance property Scheme of the Uri class which is used to get the scheme name for the URI.

Both properties return string values. Scheme property can generate InvalidOperationException.

Program:

The source code to check whether a given Uri is accessed through http protocol is given below. The given program is compiled and executed successfully.

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

Output:

http
http
Given Uri is access through http protocol
Press any key to continue . . .

C# Uri Class Programs »





Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.