Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / CodeSubDirectory.cs / 1305376 / CodeSubDirectory.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System; using System.Xml; using System.Configuration; using System.Collections.Specialized; using System.Collections; using System.Globalization; using System.IO; using System.Text; using System.Web.Compilation; using System.Reflection; using System.Web.Hosting; using System.Web.UI; using System.CodeDom.Compiler; using System.Web.Util; using System.ComponentModel; using System.Security.Permissions; public sealed class CodeSubDirectory : ConfigurationElement { private const string dirNameAttribName = "directoryName"; private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propDirectoryName = new ConfigurationProperty(dirNameAttribName, typeof(string), null, StdValidatorsAndConverters.WhiteSpaceTrimStringConverter, StdValidatorsAndConverters.NonEmptyStringValidator, ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey); static CodeSubDirectory() { _properties = new ConfigurationPropertyCollection(); _properties.Add(_propDirectoryName); } internal CodeSubDirectory() { } public CodeSubDirectory(string directoryName) { DirectoryName = directoryName; } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty(dirNameAttribName, IsRequired = true, IsKey = true, DefaultValue = "")] [TypeConverter(typeof(WhiteSpaceTrimStringConverter))] public string DirectoryName { get { return (string)base[_propDirectoryName]; } set { base[_propDirectoryName] = value; } } // The assembly is named after the directory internal string AssemblyName { get { return DirectoryName; } } // Validate the element for runtime use internal void DoRuntimeValidation() { string directoryName = DirectoryName; // If the app is precompiled, don't attempt further validation, sine the directory // will not actually exist (VSWhidbey 394333) if (BuildManager.IsPrecompiledApp) { return; } // Make sure it's just a valid simple directory name if (!Util.IsValidFileName(directoryName)) { throw new ConfigurationErrorsException( SR.GetString(SR.Invalid_CodeSubDirectory, directoryName), ElementInformation.Properties[dirNameAttribName].Source, ElementInformation.Properties[dirNameAttribName].LineNumber); } VirtualPath codeVirtualSubDir = HttpRuntime.CodeDirectoryVirtualPath.SimpleCombineWithDir(directoryName); // Make sure the specified directory exists if (!VirtualPathProvider.DirectoryExistsNoThrow(codeVirtualSubDir)) { throw new ConfigurationErrorsException( SR.GetString(SR.Invalid_CodeSubDirectory_Not_Exist, codeVirtualSubDir), ElementInformation.Properties[dirNameAttribName].Source, ElementInformation.Properties[dirNameAttribName].LineNumber); } // Look at the actual physical dir to get its name canonicalized (VSWhidbey 288568) string physicalDir = codeVirtualSubDir.MapPathInternal(); FindFileData ffd; FindFileData.FindFile(physicalDir, out ffd); // If the name was not canonical, reject it if (!StringUtil.EqualsIgnoreCase(directoryName, ffd.FileNameLong)) { throw new ConfigurationErrorsException( SR.GetString(SR.Invalid_CodeSubDirectory, directoryName), ElementInformation.Properties[dirNameAttribName].Source, ElementInformation.Properties[dirNameAttribName].LineNumber); } if (BuildManager.IsReservedAssemblyName(directoryName)) { throw new ConfigurationErrorsException( SR.GetString(SR.Reserved_AssemblyName, directoryName), ElementInformation.Properties[dirNameAttribName].Source, ElementInformation.Properties[dirNameAttribName].LineNumber); } } } } // 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
- EpmTargetTree.cs
- FrameworkContentElement.cs
- DataBoundLiteralControl.cs
- TypeDescriptionProviderAttribute.cs
- RuntimeArgumentHandle.cs
- Control.cs
- ProviderCommandInfoUtils.cs
- ToolStripTemplateNode.cs
- TiffBitmapDecoder.cs
- UInt64.cs
- Nullable.cs
- DateTimeOffsetConverter.cs
- ProxyGenerationError.cs
- XsdBuildProvider.cs
- MarkupObject.cs
- PropertyDescriptor.cs
- PropertySourceInfo.cs
- ServiceOperationInvoker.cs
- QuaternionAnimation.cs
- CheckBoxRenderer.cs
- IteratorFilter.cs
- DataGridLinkButton.cs
- EntityCommandDefinition.cs
- CachedPathData.cs
- SafeTokenHandle.cs
- typedescriptorpermission.cs
- IndexedEnumerable.cs
- XslAst.cs
- EventLogWatcher.cs
- MemoryMappedFileSecurity.cs
- IInstanceTable.cs
- InfocardInteractiveChannelInitializer.cs
- ConfigurationManagerInternalFactory.cs
- FacetDescription.cs
- SafeSystemMetrics.cs
- SpStreamWrapper.cs
- DataGridHeaderBorder.cs
- PageAdapter.cs
- SafeMILHandle.cs
- EntitySetRetriever.cs
- ContainerParagraph.cs
- DefaultShape.cs
- TransactionContextValidator.cs
- ExtensibleSyndicationObject.cs
- Column.cs
- remotingproxy.cs
- ImageDrawing.cs
- TextElementEnumerator.cs
- SecurityUtils.cs
- DBSchemaRow.cs
- WebReferenceCollection.cs
- AsyncPostBackTrigger.cs
- CheckedPointers.cs
- DBConnection.cs
- ReadOnlyDictionary.cs
- NotificationContext.cs
- MissingSatelliteAssemblyException.cs
- AppDomainAttributes.cs
- SolidBrush.cs
- XmlILAnnotation.cs
- Transform3DGroup.cs
- X500Name.cs
- InputElement.cs
- NameValuePair.cs
- ListViewTableCell.cs
- SchemaObjectWriter.cs
- ValidationPropertyAttribute.cs
- TraceLog.cs
- PixelFormat.cs
- DesignerDataColumn.cs
- WebPart.cs
- CompositeControl.cs
- webclient.cs
- ApplySecurityAndSendAsyncResult.cs
- CompilerGeneratedAttribute.cs
- CultureInfo.cs
- LockedBorderGlyph.cs
- CommandExpr.cs
- DataBoundLiteralControl.cs
- SHA1Managed.cs
- NameValueConfigurationElement.cs
- DispatchWrapper.cs
- ThreadStartException.cs
- UnknownBitmapEncoder.cs
- MailAddress.cs
- webbrowsersite.cs
- RightsManagementErrorHandler.cs
- XmlToDatasetMap.cs
- BuiltInExpr.cs
- Byte.cs
- PermissionSetTriple.cs
- OleDbConnection.cs
- SafeHandle.cs
- QuadraticBezierSegment.cs
- TreeView.cs
- PrintingPermission.cs
- DatePicker.cs
- FullTextState.cs
- PhoneCall.cs
- FloatAverageAggregationOperator.cs