48 references to WellKnownSidType
mscorlib (10)
system\security\accesscontrol\acl.cs (1)
3083static private SecurityIdentifier _sidEveryone = new SecurityIdentifier( WellKnownSidType.WorldSid, null );
system\security\principal\sid.cs (7)
465public SecurityIdentifier( WellKnownSidType sidType, SecurityIdentifier domainSid ) 471if (sidType == WellKnownSidType.LogonIdsSid) 491if ((sidType < WellKnownSidType.NullSid) || (sidType > WellKnownSidType.MaxDefined)) 500if ((sidType >= WellKnownSidType.AccountAdministratorSid) && (sidType <= WellKnownSidType.AccountRasAndIasServersSid)) 899public bool IsWellKnown( WellKnownSidType type )
system\security\principal\win32.cs (2)
251WellKnownSidType sidType, 408WellKnownSidType type
System (1)
services\monitoring\system\diagnosticts\SharedUtils.cs (1)
119SecurityIdentifier everyoneSid = new SecurityIdentifier(WellKnownSidType.AuthenticatedUserSid, null);
System.Data (2)
fx\src\data\System\Data\ProviderBase\DbConnectionPoolIdentity.cs (2)
33static private readonly byte[] NetworkSid = (ADP.IsWindowsNT ? CreateWellKnownSid(WellKnownSidType.NetworkSid) : null); 56static private byte[] CreateWellKnownSid(WellKnownSidType sidType) {
System.IdentityModel (1)
System\IdentityModel\Claims\ClaimSet.cs (1)
42SecurityIdentifier sid = new SecurityIdentifier(WellKnownSidType.NTAuthoritySid, null);
System.ServiceModel (15)
System\ServiceModel\Activation\Configuration\SecurityIdentifierElementCollection.cs (4)
40this.Add(new SecurityIdentifierElement(new SecurityIdentifier(WellKnownSidType.LocalSystemSid, null))); 41this.Add(new SecurityIdentifierElement(new SecurityIdentifier(WellKnownSidType.BuiltinAdministratorsSid, null))); 42this.Add(new SecurityIdentifierElement(new SecurityIdentifier(WellKnownSidType.LocalServiceSid, null))); 43this.Add(new SecurityIdentifierElement(new SecurityIdentifier(WellKnownSidType.NetworkServiceSid, null)));
System\ServiceModel\Activation\Utility.cs (1)
358return new SecurityIdentifier(WellKnownSidType.LocalSystemSid, null);
System\ServiceModel\Channels\PipeConnection.cs (2)
2426dacl.AddAccess(AccessControlType.Deny, new SecurityIdentifier(WellKnownSidType.NetworkSid, null), 2434dacl.AddAccess(AccessControlType.Allow, new SecurityIdentifier(WellKnownSidType.WorldSid, null),
System\ServiceModel\Channels\SharedConnectionListener.cs (1)
662bool notNecessary = !OSEnvironmentHelper.IsVistaOrGreater && listenerUserSid.Equals(new SecurityIdentifier(WellKnownSidType.LocalSystemSid, null));
System\ServiceModel\ComIntegration\ComPlusAuthorization.cs (1)
206static SecurityIdentifier sidAdministrators = new SecurityIdentifier(WellKnownSidType.BuiltinAdministratorsSid, null);
System\ServiceModel\Dispatcher\SecurityImpersonationBehavior.cs (1)
232if (sidIdentity.SecurityIdentifier.IsWellKnown(WellKnownSidType.AnonymousSid))
System\ServiceModel\Security\SecurityUtils.cs (5)
352administratorsSid = new SecurityIdentifier(WellKnownSidType.BuiltinAdministratorsSid, null); 431return (sid.IsWellKnown(WellKnownSidType.LocalSystemSid) 432|| sid.IsWellKnown(WellKnownSidType.NetworkServiceSid) 433|| sid.IsWellKnown(WellKnownSidType.LocalServiceSid) 2297if (!allowUnauthenticatedCallers && identity.User.IsWellKnown(WellKnownSidType.AnonymousSid))
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\Description\WorkflowInstanceManagementBehavior.cs (1)
123SecurityIdentifier identifier = new SecurityIdentifier(WellKnownSidType.BuiltinAdministratorsSid, null);
System.Workflow.Runtime (2)
DebugEngine\DebugController.cs (2)
109CommonAce adminsGroupAceForToken = new CommonAce(AceFlags.None, AceQualifier.AccessAllowed, NativeMethods.TOKEN_QUERY, new SecurityIdentifier(WellKnownSidType.BuiltinAdministratorsSid, null), false, null); 344SecurityIdentifier si = new SecurityIdentifier(WellKnownSidType.BuiltinAdministratorsSid, null);
WsatConfig (8)
Configuration\ClusterRegistryConfigurationProvider.cs (4)
328if (ace != null && ace.AceType == AceType.AccessAllowed && ace.SecurityIdentifier.IsWellKnown(WellKnownSidType.WorldSid)) 332dacl.Purge(new SecurityIdentifier(WellKnownSidType.WorldSid, null)); 337dacl.AddAccess(AccessControlType.Allow, new SecurityIdentifier(WellKnownSidType.AuthenticatedUserSid, null), 339dacl.AddAccess(AccessControlType.Allow, new SecurityIdentifier(WellKnownSidType.NetworkServiceSid, null),
Configuration\StdRegProviderWrapper.cs (2)
347new SecurityIdentifier(WellKnownSidType.NetworkServiceSid, null), 356new SecurityIdentifier(WellKnownSidType.AuthenticatedUserSid, null),
Configuration\WsatConfiguration.cs (2)
660SecurityIdentifier ns = new SecurityIdentifier(WellKnownSidType.NetworkServiceSid, null); 714SecurityIdentifier ns = new SecurityIdentifier(WellKnownSidType.NetworkServiceSid, null);
WsatUI (8)
Configuration\ClusterRegistryConfigurationProvider.cs (4)
328if (ace != null && ace.AceType == AceType.AccessAllowed && ace.SecurityIdentifier.IsWellKnown(WellKnownSidType.WorldSid)) 332dacl.Purge(new SecurityIdentifier(WellKnownSidType.WorldSid, null)); 337dacl.AddAccess(AccessControlType.Allow, new SecurityIdentifier(WellKnownSidType.AuthenticatedUserSid, null), 339dacl.AddAccess(AccessControlType.Allow, new SecurityIdentifier(WellKnownSidType.NetworkServiceSid, null),
Configuration\StdRegProviderWrapper.cs (2)
347new SecurityIdentifier(WellKnownSidType.NetworkServiceSid, null), 356new SecurityIdentifier(WellKnownSidType.AuthenticatedUserSid, null),
Configuration\WsatConfiguration.cs (2)
660SecurityIdentifier ns = new SecurityIdentifier(WellKnownSidType.NetworkServiceSid, null); 714SecurityIdentifier ns = new SecurityIdentifier(WellKnownSidType.NetworkServiceSid, null);