Base:
property
Name
System.Security.Claims.ClaimsIdentity.Name
40 references to Name
mscorlib (2)
system\security\principal\windowsidentity.cs (2)
1281
if (!String.IsNullOrEmpty(
Name
))
1288
m_userClaims.Add(new Claim(NameClaimType,
Name
, ClaimValueTypes.String, m_issuerName, m_issuerName, this));
System (2)
net\System\Net\_SSPIWrapper.cs (2)
101
currentIdentityKey = string.Format("{0}_{1}_{2}", package, intent.ToString(), WindowsIdentity.GetCurrent().
Name
);
115
currentIdentityKey = string.Format("{0}_{1}_{2}", package, intent.ToString(), WindowsIdentity.GetCurrent().
Name
);
System.IdentityModel (2)
System\IdentityModel\Claims\WindowsClaimSet.cs (1)
161
claims.Add(Claim.CreateNameClaim(this.windowsIdentity.
Name
));
System\IdentityModel\Tokens\SessionSecurityToken.cs (1)
1292
dictionaryWriter.WriteAttributeString(dictionary.WindowsLogonName, dictionary.EmptyString, wci.
Name
);
System.ServiceModel (19)
System\ServiceModel\Channels\HttpChannelListener.cs (4)
521
WriteAuditEvent(AuditLevel.Failure, (authenticationContext.LogonUserIdentity != null) ? authenticationContext.LogonUserIdentity.
Name
: String.Empty, exception);
528
WriteAuditEvent(AuditLevel.Success, (authenticationContext.LogonUserIdentity != null) ? authenticationContext.LogonUserIdentity.
Name
: String.Empty, null);
581
WriteAuditEvent(AuditLevel.Failure, (identity != null) ? identity.Name : ((wid != null) ? wid.
Name
: String.Empty), exception);
590
WriteAuditEvent(AuditLevel.Success, (identity != null) ? identity.Name : ((wid != null) ? wid.
Name
: String.Empty), null);
System\ServiceModel\ComIntegration\ComPlusAuthorization.cs (2)
503
IntPtr str = Marshal.StringToCoTaskMemUni(SecurityUtils.GetProcessIdentity().
Name
);
523
IntPtr str = Marshal.StringToCoTaskMemUni(clientIdentity.
Name
);
System\ServiceModel\ComIntegration\ComPlusDiagnosticTraceRecords.cs (2)
145
from, incomingTransactionID, callerIdentity.
Name
);
159
from, incomingTransactionID, callerIdentity.
Name
, instanceID);
System\ServiceModel\ComIntegration\ComPlusInstanceProvider.cs (1)
111
callerIdentity.
Name
,
System\ServiceModel\ComIntegration\ComPlusThreadInitializer.cs (6)
110
SR.TraceCodeComIntegrationInvokingMethod, this.info, from, action, identity.
Name
, iid, instanceID, false);
155
SR.TraceCodeComIntegrationInvokingMethodNewTransaction, this.info, from, action, identity.
Name
, iid, instanceID, incomingTransactionID);
167
identityName = identity.
Name
;
191
SR.TraceCodeComIntegrationInvokingMethodContextTransaction, this.info, from, action, identity.
Name
, iid, instanceID, true);
206
identity.
Name
,
242
identity.
Name
,
System\ServiceModel\Diagnostics\MessageTraceRecord.cs (1)
53
!string.IsNullOrEmpty(message.Properties.Security.ServiceSecurityContext.WindowsIdentity.
Name
);
System\ServiceModel\Security\SctClaimSerializer.cs (1)
445
writer.WriteString(wid.
Name
);
System\ServiceModel\Security\WindowsSspiNegotiation.cs (1)
243
return windowsIdentity.
Name
;
System\ServiceModel\UpnEndpointIdentity.cs (1)
82
downlevelName = windowsIdentity.
Name
;
System.Web (12)
Cache\SqlCacheDependency.cs (1)
1137
"; running as " + WindowsIdentity.GetCurrent().
Name
);
DataAccess\DataConnectionHelper.cs (3)
77
if( id != null && id.
Name
!= null )
79
if ( string.Compare( id.
Name
,
86
return id.
Name
;
HttpRuntime.cs (1)
3498
return WindowsIdentity.GetCurrent().
Name
;
Management\WebEvents.cs (3)
598
Debug.Trace("WebEventRaiseDetails", "Calling ProcessEvent under " + HttpApplication.GetCurrentWindowsIdentityWithAssert().
Name
);
1978
_accountName = WindowsIdentity.GetCurrent().
Name
;
2145
_accountName = HttpApplication.GetCurrentWindowsIdentityWithAssert().
Name
;
State\sqlstateclientmanager.cs (3)
350
Debug.Trace("SessionStatePooling", "Calling GetConnection under " + WindowsIdentity.GetCurrent().
Name
);
1184
Debug.Trace("SessionStateConnectionIdentity", "Connecting under " + WindowsIdentity.GetCurrent().
Name
);
1211
user = WindowsIdentity.GetCurrent().
Name
;
UI\Util.cs (1)
1399
return HttpApplication.GetCurrentWindowsIdentityWithAssert().
Name
;
System.Web.Extensions (1)
ClientServices\Providers\ClientWindowsAuthenticationMembershipProvider.cs (1)
32
if (!string.IsNullOrEmpty(username) && string.Compare(username, id.
Name
, StringComparison.OrdinalIgnoreCase) != 0)
System.Xml (2)
System\Xml\Serialization\Compiler.cs (2)
260
if (id != null && id.
Name
!= null)
261
return id.
Name
;