C# program to demonstrate the use of UriSchemeNews property of Uri class

Here, we are going to demonstrate the use of UriSchemeNews property of Uri class in C#.Net.
Submitted by Nidhi, on April 14, 2021

Here, we will learn about the UriSchemeNews property of the Uri class. This is a static property Uri class that specifies Uri as a newsgroup and accessed through Network News Transport Protocol (NNTP).

UriSchemeNews 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 demonstrate the use of UriSchemeNews property of Uri class 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("news:[email protected]");

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

        if (uriAddress.Scheme == Uri.UriSchemeNews)
            Console.WriteLine("Given Uri is an news group and accessed through the Network News Transport Protocol(NNTP)");
        else
            Console.WriteLine("Given Uri is not an news group and accessed through the Network News Transport Protocol(NNTP)");
    }
}

Output:

news
news
Given Uri is an news group and accessed through the Network News Transport Protocol(NNTP)
Press any key to continue . . .

C# Uri Class Programs »




Comments and Discussions!

Load comments ↻





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