Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
HttpListenerBasicIdentity.cs
Go to the documentation of this file.
1
using
System.Security.Principal
;
2
3
namespace
System.Net
;
4
5
public
class
HttpListenerBasicIdentity
:
GenericIdentity
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
}
System.Net.HttpListenerBasicIdentity.HttpListenerBasicIdentity
HttpListenerBasicIdentity(string username, string password)
Definition
HttpListenerBasicIdentity.cs:9
System.Net.HttpListenerBasicIdentity.Password
virtual string Password
Definition
HttpListenerBasicIdentity.cs:7
System.Net.HttpListenerBasicIdentity
Definition
HttpListenerBasicIdentity.cs:6
System.Security.Principal.GenericIdentity
Definition
GenericIdentity.cs:7
System.Net
Definition
HttpClientJsonExtensions.cs:8
System.Security.Principal
Definition
IIdentity.cs:1
source
System.Net.HttpListener
System.Net
HttpListenerBasicIdentity.cs
Generated by
1.10.0