11 references to InternalGetUserName
System (11)
net\System\Net\_BasicClient.cs (1)
100
string username = NC.
InternalGetUserName
();
net\System\Net\_DigestClient.cs (2)
330
if (NC == null || (!(NC is SystemNetworkCredential) && NC.
InternalGetUserName
().Length == 0))
942
string username = NC.
InternalGetUserName
();
net\System\Net\_KerberosClient.cs (1)
81
if (NC == null || (!(NC is SystemNetworkCredential) && NC.
InternalGetUserName
().Length == 0))
net\System\Net\_NegotiateClient.cs (1)
84
if (NC == null || (!(NC is SystemNetworkCredential) && (username = NC.
InternalGetUserName
()).Length == 0))
net\System\Net\_NTAuthentication.cs (2)
515
credential.
InternalGetUserName
(), credential.InternalGetDomain(),
546
string username = credential.
InternalGetUserName
();
net\System\Net\_NtlmClient.cs (1)
81
if (NC == null || (!(NC is SystemNetworkCredential) && (username = NC.
InternalGetUserName
()).Length == 0))
net\System\Net\FtpWebRequest.cs (1)
2011
name = networkCreds.
InternalGetUserName
();
net\System\Net\NetworkCredential.cs (2)
109
return
InternalGetUserName
();
221
domainUserName +=
InternalGetUserName
();