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

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

Here, we will learn about the Segments property of the Uri class. This is an instance property of the Uri class which is used to get an array of segments present in Uri.

This property returns an array of string values to represent segments that are in given Uri. This property may generate System.InvalidOperationException exception.

Program:

The source code to demonstrate the use of Segments 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 domainUri;
        
        string[] segs;

        domainUri = new Uri("http://www.includehelp.com:8082/Article/CPrograms/");
        segs = domainUri.Segments;

        foreach (string seg in segs)
        {
            Console.WriteLine(seg);
        }
    }
}

Output:

/
Article/
CPrograms/
Press any key to continue . . .

Here we took the object of the Uri class and used the Segments property that returns an array of strings that contains segments. And here we get segments one by one using a for each loop.

C# Uri Class Programs »





Comments and Discussions!

Load comments ↻






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