Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Misc / ConfigPathUtility.cs / 1 / ConfigPathUtility.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { #if CONFIGPATHUTILITY_SYSTEMWEB using Debug=System.Web.Util.Debug; #endif internal static class ConfigPathUtility { private const char SeparatorChar = '/'; // // A configPath is valid if // * It does not start or end with a '/' // * It is not null or empty, except in the case of the root configuration record // * It does not contain '\' // * It does not contain a path component equal to "." or ".." // // The checks for '\', ".", and ".." are not strictly necessary, but their presence // could lead to problems for configuration hosts. // static internal bool IsValid(string configPath) { if (String.IsNullOrEmpty(configPath)) { return false; } int start = -1; for (int examine = 0; examine <= configPath.Length; examine++) { char ch; if (examine < configPath.Length) { ch = configPath[examine]; } else { ch = SeparatorChar; } // backslash disallowed if (ch == '\\') { return false; } if (ch == SeparatorChar) { // double slash disallowed // note this check also purposefully catches starting and ending slash if (examine == start + 1) { return false; } // "." disallowed if (examine == start + 2 && configPath[start + 1] == '.') { return false; } // ".." disallowed if (examine == start + 3 && configPath[start + 1] == '.' && configPath[start + 2] == '.') { return false; } start = examine; } } return true; } #if !CONFIGPATHUTILITY_SYSTEMWEB static internal string Combine(string parentConfigPath, string childConfigPath) { Debug.Assert(String.IsNullOrEmpty(parentConfigPath) || IsValid(parentConfigPath), "String.IsNullOrEmpty(parentConfigPath) || IsValid(parentConfigPath)"); Debug.Assert(String.IsNullOrEmpty(childConfigPath) || IsValid(childConfigPath), "String.IsNullOrEmpty(childConfigPath) || IsValid(childConfigPath)"); if (String.IsNullOrEmpty(parentConfigPath)) { return childConfigPath; } if (String.IsNullOrEmpty(childConfigPath)) { return parentConfigPath; } return parentConfigPath + "/" + childConfigPath; } static internal string[] GetParts(string configPath) { Debug.Assert(IsValid(configPath), "IsValid(configPath)"); string[] parts = configPath.Split(SeparatorChar); return parts; } // // Return the last part of a config path, e.g. // GetName("MACHINE/WEBROOT/Default Web Site/app") == "app" // static internal string GetName(string configPath) { Debug.Assert(String.IsNullOrEmpty(configPath) || IsValid(configPath), "String.IsNullOrEmpty(configPath) || IsValid(configPath)"); if (String.IsNullOrEmpty(configPath)) { return configPath; } int index = configPath.LastIndexOf('/'); if (index == -1) { return configPath; } Debug.Assert(index != configPath.Length - 1); return configPath.Substring(index + 1); } #endif // Avoid unused code warning in System.Configuration by including functions in assembly-specific #defines #if CONFIGPATHUTILITY_SYSTEMWEB static internal string GetParent(string configPath) { Debug.Assert(String.IsNullOrEmpty(configPath) || IsValid(configPath), "String.IsNullOrEmpty(configPath) || IsValid(configPath)"); if (String.IsNullOrEmpty(configPath)) { return null; } string parentConfigPath; int lastSlash = configPath.LastIndexOf(SeparatorChar); if (lastSlash == -1) { parentConfigPath = null; } else { parentConfigPath = configPath.Substring(0, lastSlash); } return parentConfigPath; } #endif } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { #if CONFIGPATHUTILITY_SYSTEMWEB using Debug=System.Web.Util.Debug; #endif internal static class ConfigPathUtility { private const char SeparatorChar = '/'; // // A configPath is valid if // * It does not start or end with a '/' // * It is not null or empty, except in the case of the root configuration record // * It does not contain '\' // * It does not contain a path component equal to "." or ".." // // The checks for '\', ".", and ".." are not strictly necessary, but their presence // could lead to problems for configuration hosts. // static internal bool IsValid(string configPath) { if (String.IsNullOrEmpty(configPath)) { return false; } int start = -1; for (int examine = 0; examine <= configPath.Length; examine++) { char ch; if (examine < configPath.Length) { ch = configPath[examine]; } else { ch = SeparatorChar; } // backslash disallowed if (ch == '\\') { return false; } if (ch == SeparatorChar) { // double slash disallowed // note this check also purposefully catches starting and ending slash if (examine == start + 1) { return false; } // "." disallowed if (examine == start + 2 && configPath[start + 1] == '.') { return false; } // ".." disallowed if (examine == start + 3 && configPath[start + 1] == '.' && configPath[start + 2] == '.') { return false; } start = examine; } } return true; } #if !CONFIGPATHUTILITY_SYSTEMWEB static internal string Combine(string parentConfigPath, string childConfigPath) { Debug.Assert(String.IsNullOrEmpty(parentConfigPath) || IsValid(parentConfigPath), "String.IsNullOrEmpty(parentConfigPath) || IsValid(parentConfigPath)"); Debug.Assert(String.IsNullOrEmpty(childConfigPath) || IsValid(childConfigPath), "String.IsNullOrEmpty(childConfigPath) || IsValid(childConfigPath)"); if (String.IsNullOrEmpty(parentConfigPath)) { return childConfigPath; } if (String.IsNullOrEmpty(childConfigPath)) { return parentConfigPath; } return parentConfigPath + "/" + childConfigPath; } static internal string[] GetParts(string configPath) { Debug.Assert(IsValid(configPath), "IsValid(configPath)"); string[] parts = configPath.Split(SeparatorChar); return parts; } // // Return the last part of a config path, e.g. // GetName("MACHINE/WEBROOT/Default Web Site/app") == "app" // static internal string GetName(string configPath) { Debug.Assert(String.IsNullOrEmpty(configPath) || IsValid(configPath), "String.IsNullOrEmpty(configPath) || IsValid(configPath)"); if (String.IsNullOrEmpty(configPath)) { return configPath; } int index = configPath.LastIndexOf('/'); if (index == -1) { return configPath; } Debug.Assert(index != configPath.Length - 1); return configPath.Substring(index + 1); } #endif // Avoid unused code warning in System.Configuration by including functions in assembly-specific #defines #if CONFIGPATHUTILITY_SYSTEMWEB static internal string GetParent(string configPath) { Debug.Assert(String.IsNullOrEmpty(configPath) || IsValid(configPath), "String.IsNullOrEmpty(configPath) || IsValid(configPath)"); if (String.IsNullOrEmpty(configPath)) { return null; } string parentConfigPath; int lastSlash = configPath.LastIndexOf(SeparatorChar); if (lastSlash == -1) { parentConfigPath = null; } else { parentConfigPath = configPath.Substring(0, lastSlash); } return parentConfigPath; } #endif } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- EntityDataSourceViewSchema.cs
- TreeViewItem.cs
- _HeaderInfo.cs
- XmlNamedNodeMap.cs
- IntranetCredentialPolicy.cs
- ValuePatternIdentifiers.cs
- LoadGrammarCompletedEventArgs.cs
- XPathAncestorIterator.cs
- SinglePhaseEnlistment.cs
- TitleStyle.cs
- XmlIlTypeHelper.cs
- IdleTimeoutMonitor.cs
- TextServicesPropertyRanges.cs
- MouseGesture.cs
- LocationReferenceValue.cs
- TypeUtils.cs
- _HeaderInfoTable.cs
- HttpListenerResponse.cs
- HtmlEmptyTagControlBuilder.cs
- XmlSchemaRedefine.cs
- UserControl.cs
- XomlSerializationHelpers.cs
- ResourceDescriptionAttribute.cs
- IntSecurity.cs
- SqlClientFactory.cs
- DeobfuscatingStream.cs
- ProviderConnectionPointCollection.cs
- UrlMappingCollection.cs
- PageRanges.cs
- EventToken.cs
- DummyDataSource.cs
- OutputWindow.cs
- SrgsText.cs
- Currency.cs
- RealizedColumnsBlock.cs
- securitycriticaldataClass.cs
- DataGridViewColumnCollection.cs
- ConfigurationPropertyAttribute.cs
- NumberFormatter.cs
- RelationshipConverter.cs
- ListViewDeleteEventArgs.cs
- HTMLTagNameToTypeMapper.cs
- ImageListUtils.cs
- AuthenticateEventArgs.cs
- PageCatalogPart.cs
- ActivationArguments.cs
- cookiecontainer.cs
- Cursor.cs
- EFTableProvider.cs
- DefaultTraceListener.cs
- MsmqIntegrationChannelFactory.cs
- PaperSource.cs
- MatrixTransform.cs
- MainMenu.cs
- SafeMILHandleMemoryPressure.cs
- WorkflowRuntimeSection.cs
- AssemblyLoader.cs
- _NetworkingPerfCounters.cs
- CompilerTypeWithParams.cs
- MetafileHeader.cs
- GZipUtils.cs
- SqlHelper.cs
- ConfigurationSettings.cs
- MappingItemCollection.cs
- codemethodreferenceexpression.cs
- PointF.cs
- QueryContinueDragEventArgs.cs
- TraceSwitch.cs
- SubMenuStyleCollection.cs
- BrowserCapabilitiesCompiler.cs
- ToolStripDropDownButton.cs
- CommandBinding.cs
- CacheOutputQuery.cs
- AddInAttribute.cs
- WindowExtensionMethods.cs
- MenuTracker.cs
- IdentifierService.cs
- SourceElementsCollection.cs
- ToolBarButtonClickEvent.cs
- TextPenaltyModule.cs
- XXXOnTypeBuilderInstantiation.cs
- NullReferenceException.cs
- SevenBitStream.cs
- LinkedResourceCollection.cs
- ErrorStyle.cs
- MultiBindingExpression.cs
- BuildDependencySet.cs
- EncoderParameters.cs
- EntityContainerAssociationSet.cs
- StringOutput.cs
- RoleManagerEventArgs.cs
- DataSource.cs
- SystemTcpStatistics.cs
- CheckBoxPopupAdapter.cs
- ResourceAssociationType.cs
- UnicodeEncoding.cs
- AspCompat.cs
- OutputCacheProfileCollection.cs
- SponsorHelper.cs
- DesignerOptionService.cs