C# program to check whether a given Uri is accessed through NetTcp scheme

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

Here, we will learn how to check given Uri is accessed through the NetTcp scheme of the "Indigo" system. Here we will use a static property UriSchemeNetTcp of Uri class that specifies Uri is accessed through the NetTcp Scheme of "Indigo" system, which is used by Windows communication foundation (WCF). UriSchemeNetTcp 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 NetTcp scheme 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.UriSchemeNetTcp);

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

Output:

mailto
net.tcp
Given Uri is not accessed through NetPipe scheme of Indigo system used by the WC
F
Press any key to continue . . .

C# Uri Class Programs »





Comments and Discussions!

Load comments ↻






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