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