Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / UrlMapping.cs / 1305376 / UrlMapping.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; public sealed class UrlMapping : ConfigurationElement { private static ConfigurationPropertyCollection _properties; #region Property Declarations private static readonly ConfigurationProperty _propUrl = new ConfigurationProperty("url", typeof(string), null, StdValidatorsAndConverters.WhiteSpaceTrimStringConverter, new CallbackValidator(typeof(string), ValidateUrl), ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey); private static readonly ConfigurationProperty _propMappedUrl = new ConfigurationProperty("mappedUrl", typeof(string), null, StdValidatorsAndConverters.WhiteSpaceTrimStringConverter, StdValidatorsAndConverters.NonEmptyStringValidator, ConfigurationPropertyOptions.IsRequired); #endregion static UrlMapping() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propUrl); _properties.Add(_propMappedUrl); } internal UrlMapping() { } public UrlMapping(string url, string mappedUrl) { base[_propUrl] = url; base[_propMappedUrl] = mappedUrl; } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("url", IsRequired = true, IsKey = true)] public string Url { get { return (string)base[_propUrl]; } } [ConfigurationProperty("mappedUrl", IsRequired = true)] public string MappedUrl { get { return (string)base[_propMappedUrl]; } } static private void ValidateUrl(object value) { // The Url cannot be an empty string. Use the std validator for that StdValidatorsAndConverters.NonEmptyStringValidator.Validate(value); string url = (string)value; if (!UrlPath.IsAppRelativePath(url)) { throw new ConfigurationErrorsException(SR.GetString(SR.UrlMappings_only_app_relative_url_allowed, url)); } } } } // 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; public sealed class UrlMapping : ConfigurationElement { private static ConfigurationPropertyCollection _properties; #region Property Declarations private static readonly ConfigurationProperty _propUrl = new ConfigurationProperty("url", typeof(string), null, StdValidatorsAndConverters.WhiteSpaceTrimStringConverter, new CallbackValidator(typeof(string), ValidateUrl), ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey); private static readonly ConfigurationProperty _propMappedUrl = new ConfigurationProperty("mappedUrl", typeof(string), null, StdValidatorsAndConverters.WhiteSpaceTrimStringConverter, StdValidatorsAndConverters.NonEmptyStringValidator, ConfigurationPropertyOptions.IsRequired); #endregion static UrlMapping() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propUrl); _properties.Add(_propMappedUrl); } internal UrlMapping() { } public UrlMapping(string url, string mappedUrl) { base[_propUrl] = url; base[_propMappedUrl] = mappedUrl; } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("url", IsRequired = true, IsKey = true)] public string Url { get { return (string)base[_propUrl]; } } [ConfigurationProperty("mappedUrl", IsRequired = true)] public string MappedUrl { get { return (string)base[_propMappedUrl]; } } static private void ValidateUrl(object value) { // The Url cannot be an empty string. Use the std validator for that StdValidatorsAndConverters.NonEmptyStringValidator.Validate(value); string url = (string)value; if (!UrlPath.IsAppRelativePath(url)) { throw new ConfigurationErrorsException(SR.GetString(SR.UrlMappings_only_app_relative_url_allowed, url)); } } } } // 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
- FormViewUpdateEventArgs.cs
- CodeSubDirectory.cs
- Walker.cs
- XNodeNavigator.cs
- FrameAutomationPeer.cs
- ExternalFile.cs
- Deserializer.cs
- CustomGrammar.cs
- CommonObjectSecurity.cs
- DataGridViewLayoutData.cs
- ViewCellRelation.cs
- CustomTypeDescriptor.cs
- ClassHandlersStore.cs
- SchemaTypeEmitter.cs
- QualificationDataAttribute.cs
- TreeViewItemAutomationPeer.cs
- TransformedBitmap.cs
- SqlDataSource.cs
- PathFigureCollectionConverter.cs
- MemberRestriction.cs
- TraceEventCache.cs
- ImageConverter.cs
- NumericUpDownAccelerationCollection.cs
- ReadOnlyTernaryTree.cs
- APCustomTypeDescriptor.cs
- ExpressionBuilder.cs
- TextServicesPropertyRanges.cs
- TokenFactoryCredential.cs
- ExtensionWindow.cs
- XslTransform.cs
- ProtocolsConfigurationHandler.cs
- TableLayoutSettingsTypeConverter.cs
- ConsumerConnectionPointCollection.cs
- WorkItem.cs
- TiffBitmapDecoder.cs
- DataGridTableCollection.cs
- EmissiveMaterial.cs
- Sequence.cs
- ReadOnlyPermissionSet.cs
- Ticks.cs
- ZipIOBlockManager.cs
- CodeAttributeDeclaration.cs
- GPPOINTF.cs
- ResourceDictionary.cs
- ContainerFilterService.cs
- TimeoutHelper.cs
- XPSSignatureDefinition.cs
- TakeOrSkipWhileQueryOperator.cs
- RawStylusInputReport.cs
- XmlChildEnumerator.cs
- NavigationExpr.cs
- HierarchicalDataBoundControl.cs
- UnmanagedBitmapWrapper.cs
- StringPropertyBuilder.cs
- GroupItemAutomationPeer.cs
- CompensationDesigner.cs
- SafeWaitHandle.cs
- NetworkInterface.cs
- AppModelKnownContentFactory.cs
- WindowsFormsHelpers.cs
- ResizeGrip.cs
- Cell.cs
- SystemTcpConnection.cs
- ExceptionTrace.cs
- BitmapDecoder.cs
- InstallHelper.cs
- BasePattern.cs
- DataGridRowDetailsEventArgs.cs
- WindowsToolbarItemAsMenuItem.cs
- ImageCodecInfo.cs
- ScrollPatternIdentifiers.cs
- CodeAttributeArgument.cs
- XmlSchemaCompilationSettings.cs
- SoapCodeExporter.cs
- MULTI_QI.cs
- MenuScrollingVisibilityConverter.cs
- EntityCommandCompilationException.cs
- CategoryNameCollection.cs
- securitymgrsite.cs
- WindowsSolidBrush.cs
- Selector.cs
- EmptyElement.cs
- ObjectDataSourceView.cs
- CultureSpecificStringDictionary.cs
- ButtonStandardAdapter.cs
- TextChange.cs
- BinaryMethodMessage.cs
- AxisAngleRotation3D.cs
- ObjectDataProvider.cs
- ToolStripHighContrastRenderer.cs
- XsdCachingReader.cs
- PermissionSet.cs
- RoleProviderPrincipal.cs
- TrustLevel.cs
- WSDualHttpSecurityMode.cs
- SchemaTableOptionalColumn.cs
- TextCharacters.cs
- ServiceModelStringsVersion1.cs
- InvocationExpression.cs
- BufferModeSettings.cs