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

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

Here, we will learn about the UserInfo property of the Uri class. This is an instance property of the Uri class which is used to get username, password, and other user specified information associated with the specified Uri.

This property returns a string value to represent user information which is in given Uri. This property may generate System.InvalidOperationException exception.

Program:

The source code to demonstrate the use of UserInfo 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 domainUri1;
        Uri domainUri2;
        
        domainUri1 = new Uri("http://user:[email protected]:8082/Article/CPrograms/");
        domainUri2 = new Uri("http://abc:[email protected]:8082/Article/CPrograms/");

        Console.WriteLine(domainUri1.UserInfo);
        Console.WriteLine(domainUri2.UserInfo);
    }
}

Output:

user:password
abc:xyz
Press any key to continue . . .

Here, we took an object of the Uri class and used the UserInfo property that returns a boolean value which is used to get username, password, and other user-specified information associated with the specified Uri.

C# Uri Class Programs »





Comments and Discussions!

Load comments ↻






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