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:password@www.includehelp.com:8082/Article/CPrograms/");
        domainUri2 = new Uri("http://abc:xyz@www.includehelp.com: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 »


ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT


Comments and Discussions!




Languages: » C » C++ » C++ STL » Java » Data Structure » C#.Net » Android » Kotlin » SQL
Web Technologies: » PHP » Python » JavaScript » CSS » Ajax » Node.js » Web programming/HTML
Solved programs: » C » C++ » DS » Java » C#
Aptitude que. & ans.: » C » C++ » Java » DBMS
Interview que. & ans.: » C » Embedded C » Java » SEO » HR
CS Subjects: » CS Basics » O.S. » Networks » DBMS » Embedded Systems » Cloud Computing
» Machine learning » CS Organizations » Linux » DOS
More: » Articles » Puzzles » News/Updates

© https://www.includehelp.com some rights reserved.