C# program to check whether a given Uri is accessed through NetPipe scheme of Indigo system

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

Here, we will learn how to check given Uri is accessed through the NetPipe scheme of the "Indigo" system. Here we will use a static property UriSchemeNetPipe of Uri class that specifies Uri is accessed through the NetPipe Scheme of the "Indigo" system. UriSchemeNetPipe 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 NetPipe scheme of Indigo system 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("mailto:[email protected]?subject=uri");

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

        if (uriAddress.Scheme == Uri.UriSchemeNetPipe)
            Console.WriteLine("Given Uri is accessed through NetPipe scheme of Indigo system");
        else
            Console.WriteLine("Given Uri is not accessed through NetPipe scheme of Indigo system");
    }
}

Output:

mailto
net.pipe
Given Uri is not accessed through NetPipe scheme of Indigo system
Press any key to continue . . .

C# Uri Class Programs »




Comments and Discussions!

Load comments ↻





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