16 references to IISConstants
System.ServiceModel.Activation (16)
System\ServiceModel\Activation\MetabaseSettings.cs (16)
464string[] providers = providersString.Split(IISConstants.CommaSeparator, StringSplitOptions.RemoveEmptyEntries); 477[RegistryPermission(SecurityAction.Assert, Read = @"HKEY_LOCAL_MACHINE\" + IISConstants.CBTRegistryHKLMPath)] 481using (RegistryKey registryKey = Registry.LocalMachine.OpenSubKey(IISConstants.CBTRegistryHKLMPath)) 485object tokenCheckingObj = registryKey.GetValue(IISConstants.TokenCheckingAttributeName); 486object flagsObj = registryKey.GetValue(IISConstants.FlagsAttributeName); 487object spnsObj = registryKey.GetValue(IISConstants.SpnAttributeName); 517int index = applicationID.IndexOf(IISConstants.AboPathDelimiter, ServiceHostingEnvironment.ISAPIApplicationIdPrefix.Length); 518siteAboPath = applicationID.Substring(IISConstants.LMSegment.Length, index - IISConstants.LMSegment.Length); 522appAboPath = string.Concat(siteAboPath, IISConstants.RootSegment, HostingEnvironmentWrapper.ApplicationVirtualPath); 526if (HostingEnvironmentWrapper.ApplicationVirtualPath.Length != 1 || HostingEnvironmentWrapper.ApplicationVirtualPath[0] != IISConstants.AboPathDelimiter) 530appAboPath = string.Concat(siteAboPath, IISConstants.RootSegment); 616appTransportSettings.AuthProviders = providersString.Split(IISConstants.CommaSeparator, StringSplitOptions.RemoveEmptyEntries); 622int index = endAboPath.LastIndexOf(IISConstants.AboPathDelimiter); 647int index = endAboPath.IndexOf(IISConstants.AboPathDelimiter, appAboPath.Length + 1); 678int index = endAboPath.LastIndexOf(IISConstants.AboPathDelimiter);