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

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

Here, we will learn how to check given Uri is accessed through https protocol. Here we will use a static property UriSchemeHttps of Uri class that specifies Uri is accessed through https protocol. UriSchemeHttps is a read-only property. And we use an instance property Scheme of 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 https 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("https://www.includehelp.com/");

        Console.WriteLine(uriAddress.Scheme);
        Console.WriteLine(Uri.UriSchemeHttps);

        if (uriAddress.Scheme == Uri.UriSchemeHttps)
            Console.WriteLine("Given Uri is access through https protocol");
    }
}

Output:

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

C# Uri Class Programs »




Comments and Discussions!

Load comments ↻





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