Home
last modified time | relevance | path

Searched refs:CustomServiceNames (Results 1 – 25 of 36) sorted by relevance

12

/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/src/System.Web.Http.SelfHost/ServiceModel/Channels/
H A DChannelBindingUtility.cs34 destination.CustomServiceNames.Clear(); in InitializeFrom()
36 if (source.CustomServiceNames != null) in InitializeFrom()
38 foreach (string name in source.CustomServiceNames) in InitializeFrom()
42 destination.CustomServiceNames.Add(entry); in InitializeFrom()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/security/system/security/Authentication/ExtendedProtection/
H A DExtendedProtectionPolicyTypeConverter.cs49 … if (policy.CustomServiceNames != null && policy.CustomServiceNames.Count > 0) in ConvertTo()
51 customServiceNames = new object[policy.CustomServiceNames.Count]; in ConvertTo()
52 ((ICollection)policy.CustomServiceNames).CopyTo(customServiceNames, 0); in ConvertTo()
H A DExtendedProtectionPolicy.cs100 public ServiceNameCollection CustomServiceNames property in System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Channels/
H A DChannelBindingUtility.cs49 destination.CustomServiceNames.Clear(); in CopyFrom()
50 foreach (ServiceNameElement sourceEntry in source.CustomServiceNames) in CopyFrom()
54 destination.CustomServiceNames.Add(entry); in CopyFrom()
64 destination.CustomServiceNames.Clear(); in InitializeFrom()
66 if (source.CustomServiceNames != null) in InitializeFrom()
68 foreach (string name in source.CustomServiceNames) in InitializeFrom()
72 destination.CustomServiceNames.Add(entry); in InitializeFrom()
H A DHttpChannelListener.cs723 policy.CustomServiceNames == null && //null indicates "use default" in GetPolicyWithDefaultSpnCollection()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/security/system/security/Authentication/ExtendedProtection/Configuration/
H A DExtendedProtectionPolicyElement.cs46 [ConfigurationProperty(ExtendedProtectionConfigurationStrings.CustomServiceNames)]
47 public ServiceNameElementCollection CustomServiceNames property in System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement
63 ServiceNameElementCollection spnCollection = CustomServiceNames; in BuildPolicy()
98 new ConfigurationProperty(ExtendedProtectionConfigurationStrings.CustomServiceNames,
H A DExtendedProtectionConfigurationStrings.cs14 internal const string CustomServiceNames = "customServiceNames"; field in System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionConfigurationStrings
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ComponentModel.TypeConverter/src/System/Security/Authentication/ExtendedProtection/
H A DExtendedProtectionPolicyTypeConverter.cs42 if (policy.CustomServiceNames?.Count > 0) in ConvertTo()
44 customServiceNames = new object[policy.CustomServiceNames.Count]; in ConvertTo()
45 ((ICollection)policy.CustomServiceNames).CopyTo(customServiceNames, 0); in ConvertTo()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Security/tests/UnitTests/System/Security/Authentication/ExtendedProtection/
H A DExtendedProtectionPolicyTest.cs43 Assert.Equal(2, extendedProtectionPolicy.CustomServiceNames.Count); in Constructor_CollectionParam()
44 … Assert.Equal(expectedServiceNameCollection, extendedProtectionPolicy.CustomServiceNames); in Constructor_CollectionParam()
62 Assert.Null(extendedProtectionPolicy.CustomServiceNames); in ExtendedProtectionPolicy_Properties()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.Security.Authentication.ExtendedProtection/
H A DExtendedProtectionPolicy.cs74 public ServiceNameCollection CustomServiceNames { property in System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.Security.Authentication.ExtendedProtection.Configuration/
H A DExtendedProtectionPolicyElement.cs65 public ServiceNameElementCollection CustomServiceNames { property in System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ComponentModel.TypeConverter/tests/Security/Authentication/ExtendedProtection/
H A DExtendedProtectionPolicyTypeConverterTests.cs51 Assert.Null(instanceResult.CustomServiceNames); in ConvertTo_PositiveTests()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Security/src/System/Net/Security/
H A DNegoState.cs90 if (policy.CustomChannelBinding == null && policy.CustomServiceNames == null) in ValidateCreateContext()
414 _extendedProtectionPolicy.CustomServiceNames == null) in CheckSpn()
430 return _extendedProtectionPolicy.CustomServiceNames.Contains(clientSpn); in CheckSpn()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/SecureProtocols/
H A D_NegoState.cs108 if (policy.CustomChannelBinding == null && policy.CustomServiceNames == null) in ValidateCreateContext()
456 _ExtendedProtectionPolicy.CustomServiceNames == null) in CheckSpn()
479 return _ExtendedProtectionPolicy.CustomServiceNames.Contains(clientSpn); in CheckSpn()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Security/src/System/Security/Authentication/ExtendedProtection/
H A DExtendedProtectionPolicy.cs91 public ServiceNameCollection CustomServiceNames property in System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Administration/
H A DAdministrationStrings.cs51 internal const string CustomServiceNames = "CustomServiceNames"; field in System.ServiceModel.Administration.AdministrationStrings
H A DEndpointInstanceProvider.cs559 if (policy.CustomServiceNames != null) in FillExtendedProtectionPolicy()
561 List<string> serviceNames = new List<string>(policy.CustomServiceNames.Count); in FillExtendedProtectionPolicy()
562 foreach (string serviceName in policy.CustomServiceNames) in FillExtendedProtectionPolicy()
566 …extendedProtectionPolicy.SetProperty(AdministrationStrings.CustomServiceNames, serviceNames.ToArra… in FillExtendedProtectionPolicy()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel.Activation/System/ServiceModel/Activation/
H A DHostedAspNetEnvironment.cs299 …lection listenerSpnList = usingDefaultSpnList ? null : extendedProtectionPolicy.CustomServiceNames; in ValidateHttpSettings()
300 … if (!ChannelBindingUtility.IsSubset(iisPolicy.CustomServiceNames, listenerSpnList)) in ValidateHttpSettings()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.HttpListener/src/System/Net/Windows/
H A DHttpListener.Windows.cs1512 if (policy.CustomServiceNames == null) in GetServiceNames()
1522 serviceNames = policy.CustomServiceNames; in GetServiceNames()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.IdentityModel/System/IdentityModel/
H A DSecurityUtils.cs763 _serviceNameCollection = extendedProtectionPolicy.CustomServiceNames; in ExtendedProtectionPolicyHelper()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Security/ref/
H A DSystem.Net.Security.cs240 …m.Security.Authentication.ExtendedProtection.ServiceNameCollection CustomServiceNames { get { thro… property in System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/
H A DHttpListener.cs2174 if (policy.CustomServiceNames == null) { in GetServiceNames()
2182 serviceNames = policy.CustomServiceNames; in GetServiceNames()
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.0/
H A DSystem.cs11879 …m.Security.Authentication.ExtendedProtection.ServiceNameCollection CustomServiceNames { get { thro… property in System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy
11923 …tion.ExtendedProtection.Configuration.ServiceNameElementCollection CustomServiceNames { get { thro… property in System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.5.2/
H A DSystem.cs12393 …m.Security.Authentication.ExtendedProtection.ServiceNameCollection CustomServiceNames { get { thro… property in System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy
12437 …tion.ExtendedProtection.Configuration.ServiceNameElementCollection CustomServiceNames { get { thro… property in System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.6.1/
H A DSystem.cs12426 …m.Security.Authentication.ExtendedProtection.ServiceNameCollection CustomServiceNames { get { thro… property in System.Security.Authentication.ExtendedProtection.ExtendedProtectionPolicy
12481 …tion.ExtendedProtection.Configuration.ServiceNameElementCollection CustomServiceNames { get { thro… property in System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement

12