5 instantiations of SecurityIdentifierElement
System.ServiceModel (5)
System\ServiceModel\Activation\Configuration\SecurityIdentifierElementCollection.cs (5)
37
this.Add(new
SecurityIdentifierElement
(new SecurityIdentifier(ConfigurationStrings.IIS_IUSRSSid)));
40
this.Add(new
SecurityIdentifierElement
(new SecurityIdentifier(WellKnownSidType.LocalSystemSid, null)));
41
this.Add(new
SecurityIdentifierElement
(new SecurityIdentifier(WellKnownSidType.BuiltinAdministratorsSid, null)));
42
this.Add(new
SecurityIdentifierElement
(new SecurityIdentifier(WellKnownSidType.LocalServiceSid, null)));
43
this.Add(new
SecurityIdentifierElement
(new SecurityIdentifier(WellKnownSidType.NetworkServiceSid, null)));
6 references to SecurityIdentifierElement
SMSvcHost (2)
System\ServiceModel\Activation\NetPipeSectionData.cs (1)
32
foreach (
SecurityIdentifierElement
element in section.AllowAccounts)
System\ServiceModel\Activation\NetTcpSectionData.cs (1)
36
foreach (
SecurityIdentifierElement
element in section.AllowAccounts)
System.ServiceModel (4)
System\ServiceModel\Activation\Configuration\SecurityIdentifierElementCollection.cs (4)
17
[ConfigurationCollection(typeof(
SecurityIdentifierElement
))]
18
public sealed class SecurityIdentifierElementCollection : ServiceModelConfigurationElementCollection<
SecurityIdentifierElement
>
29
SecurityIdentifierElement
configElementKey = (
SecurityIdentifierElement
)element;