Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
HttpListenerBasicIdentity.cs
Go to the documentation of this file.
2
3namespace System.Net;
4
6{
7 public virtual string Password { get; }
8
9 public HttpListenerBasicIdentity(string username, string password)
10 : base(username, "Basic")
11 {
12 Password = password;
13 }
14}
HttpListenerBasicIdentity(string username, string password)