Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / Configuration / UrlMappingsSection.cs / 1 / UrlMappingsSection.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.ComponentModel; using System.Web.Util; using System.Diagnostics; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class UrlMappingsSection : ConfigurationSection { private static ConfigurationPropertyCollection _properties; #region Property Declarations private static readonly ConfigurationProperty _propEnabled = new ConfigurationProperty("enabled", typeof(bool), true, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propMappings = new ConfigurationProperty(null, typeof(UrlMappingCollection), null, ConfigurationPropertyOptions.IsDefaultCollection); #endregion static UrlMappingsSection() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propMappings); _properties.Add(_propEnabled); } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("", IsDefaultCollection = true)] public UrlMappingCollection UrlMappings { get { return (UrlMappingCollection)base[_propMappings]; } } [ConfigurationProperty("enabled", DefaultValue = true)] public bool IsEnabled { get { return (bool)base[_propEnabled]; } set { base[_propEnabled] = value; } } internal string HttpResolveMapping(string path) { string result = null; // Convert the 'path' param to be a relative path string relative = UrlPath.MakeVirtualPathAppRelative(path); // Look it up in our map UrlMapping elem = UrlMappings[relative]; if (elem != null) { result = elem.MappedUrl; } return result; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// 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.ComponentModel; using System.Web.Util; using System.Diagnostics; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class UrlMappingsSection : ConfigurationSection { private static ConfigurationPropertyCollection _properties; #region Property Declarations private static readonly ConfigurationProperty _propEnabled = new ConfigurationProperty("enabled", typeof(bool), true, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propMappings = new ConfigurationProperty(null, typeof(UrlMappingCollection), null, ConfigurationPropertyOptions.IsDefaultCollection); #endregion static UrlMappingsSection() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propMappings); _properties.Add(_propEnabled); } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("", IsDefaultCollection = true)] public UrlMappingCollection UrlMappings { get { return (UrlMappingCollection)base[_propMappings]; } } [ConfigurationProperty("enabled", DefaultValue = true)] public bool IsEnabled { get { return (bool)base[_propEnabled]; } set { base[_propEnabled] = value; } } internal string HttpResolveMapping(string path) { string result = null; // Convert the 'path' param to be a relative path string relative = UrlPath.MakeVirtualPathAppRelative(path); // Look it up in our map UrlMapping elem = UrlMappings[relative]; if (elem != null) { result = elem.MappedUrl; } return result; } } } // 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
- KoreanCalendar.cs
- AmbientProperties.cs
- AdPostCacheSubstitution.cs
- BindingExpressionUncommonField.cs
- SystemIcmpV6Statistics.cs
- WorkflowDurableInstance.cs
- CancellableEnumerable.cs
- FaultHandlingFilter.cs
- DefaultWorkflowSchedulerService.cs
- HelpInfo.cs
- DbConnectionPool.cs
- ProgressBarHighlightConverter.cs
- FaultPropagationQuery.cs
- SqlBooleanMismatchVisitor.cs
- PolicyUnit.cs
- DataGridViewCellConverter.cs
- UrlPath.cs
- SponsorHelper.cs
- ExtendedPropertyDescriptor.cs
- ResourceReferenceExpression.cs
- ClaimTypeElement.cs
- ThreadStateException.cs
- HttpModuleActionCollection.cs
- PreviewControlDesigner.cs
- ComponentResourceKey.cs
- TdsParser.cs
- Int64AnimationUsingKeyFrames.cs
- DynamicMetaObject.cs
- RectangleF.cs
- SemaphoreSecurity.cs
- MDIWindowDialog.cs
- SqlNotificationEventArgs.cs
- CodeThrowExceptionStatement.cs
- CharacterHit.cs
- AQNBuilder.cs
- DBBindings.cs
- CodeDOMProvider.cs
- WebHeaderCollection.cs
- WsiProfilesElementCollection.cs
- XmlSchemaSequence.cs
- XPathDocumentBuilder.cs
- DependencyObjectType.cs
- WebExceptionStatus.cs
- ResourceSet.cs
- EnumerableRowCollection.cs
- OperationDescriptionCollection.cs
- TextAdaptor.cs
- LayoutInformation.cs
- TypeSystem.cs
- InvalidateEvent.cs
- ListParaClient.cs
- SizeAnimation.cs
- BinaryHeap.cs
- ScriptReferenceBase.cs
- SQLBytes.cs
- FixedDocument.cs
- MulticastNotSupportedException.cs
- ManifestSignatureInformation.cs
- DmlSqlGenerator.cs
- Certificate.cs
- ConfigurationLoaderException.cs
- InfoCardBaseException.cs
- QilName.cs
- ConstraintCollection.cs
- __TransparentProxy.cs
- precedingquery.cs
- QilChoice.cs
- GridSplitter.cs
- DefaultSection.cs
- AmbientEnvironment.cs
- RectConverter.cs
- SqlUtil.cs
- VirtualizedCellInfoCollection.cs
- MouseActionConverter.cs
- SoapExtensionImporter.cs
- XmlDocumentFragment.cs
- BooleanAnimationBase.cs
- DataServiceOperationContext.cs
- InputManager.cs
- SelectionProviderWrapper.cs
- SelectionListComponentEditor.cs
- CodeDirectionExpression.cs
- XPathMultyIterator.cs
- objectresult_tresulttype.cs
- TreeNodeConverter.cs
- PenContexts.cs
- SafeNativeMethodsOther.cs
- CheckBoxBaseAdapter.cs
- ProfessionalColors.cs
- PeerMaintainer.cs
- MessageDescriptionCollection.cs
- PropertyEntry.cs
- RouteParameter.cs
- FullTextState.cs
- WmfPlaceableFileHeader.cs
- KeysConverter.cs
- TextViewSelectionProcessor.cs
- SecurityContextTokenValidationException.cs
- HostAdapter.cs
- CustomPeerResolverService.cs