Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / Configuration / PassportAuthentication.cs / 1 / PassportAuthentication.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /***************************************************************************** From machine.config******************************************************************************/ 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.Util; using System.ComponentModel; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class PassportAuthentication : ConfigurationElement { private static readonly ConfigurationElementProperty s_elemProperty = new ConfigurationElementProperty(new CallbackValidator(typeof(PassportAuthentication), Validate)); private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propRedirectUrl = new ConfigurationProperty("redirectUrl", typeof(string), "internal", ConfigurationPropertyOptions.None); static PassportAuthentication() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propRedirectUrl); } public PassportAuthentication() { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("redirectUrl", DefaultValue = "internal")] [StringValidator()] public string RedirectUrl { get { return (string)base[_propRedirectUrl]; } set { base[_propRedirectUrl] = value; } } protected override ConfigurationElementProperty ElementProperty { get { return s_elemProperty; } } private static void Validate(object value) { if (value == null) { throw new ArgumentNullException("passport"); } Debug.Assert(value is PassportAuthentication); PassportAuthentication elem = (PassportAuthentication)value; if (StringUtil.StringStartsWith(elem.RedirectUrl, "\\\\") || (elem.RedirectUrl.Length > 1 && elem.RedirectUrl[1] == ':')) { throw new ConfigurationErrorsException(SR.GetString(SR.Auth_bad_url)); } } } // class PassportAuthentication } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /***************************************************************************** From machine.config******************************************************************************/ 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.Util; using System.ComponentModel; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class PassportAuthentication : ConfigurationElement { private static readonly ConfigurationElementProperty s_elemProperty = new ConfigurationElementProperty(new CallbackValidator(typeof(PassportAuthentication), Validate)); private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propRedirectUrl = new ConfigurationProperty("redirectUrl", typeof(string), "internal", ConfigurationPropertyOptions.None); static PassportAuthentication() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propRedirectUrl); } public PassportAuthentication() { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("redirectUrl", DefaultValue = "internal")] [StringValidator()] public string RedirectUrl { get { return (string)base[_propRedirectUrl]; } set { base[_propRedirectUrl] = value; } } protected override ConfigurationElementProperty ElementProperty { get { return s_elemProperty; } } private static void Validate(object value) { if (value == null) { throw new ArgumentNullException("passport"); } Debug.Assert(value is PassportAuthentication); PassportAuthentication elem = (PassportAuthentication)value; if (StringUtil.StringStartsWith(elem.RedirectUrl, "\\\\") || (elem.RedirectUrl.Length > 1 && elem.RedirectUrl[1] == ':')) { throw new ConfigurationErrorsException(SR.GetString(SR.Auth_bad_url)); } } } // class PassportAuthentication } // 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
- SqlUtil.cs
- OraclePermission.cs
- NameValueCollection.cs
- EpmAttributeNameBuilder.cs
- XPathDocumentIterator.cs
- ChannelSettingsElement.cs
- EntityDataSourceQueryBuilder.cs
- CacheRequest.cs
- Classification.cs
- TableLayoutStyle.cs
- UMPAttributes.cs
- XmlSerializerFactory.cs
- NamespaceListProperty.cs
- ColorInterpolationModeValidation.cs
- WmlPageAdapter.cs
- CqlQuery.cs
- NavigationService.cs
- TextMessageEncodingBindingElement.cs
- BoundField.cs
- SqlCacheDependencyDatabaseCollection.cs
- ImageAttributes.cs
- SplashScreen.cs
- FacetEnabledSchemaElement.cs
- LineSegment.cs
- DrawingCollection.cs
- NGCSerializer.cs
- QilLoop.cs
- PerformanceCounterPermissionEntry.cs
- InputLangChangeRequestEvent.cs
- HyperLinkField.cs
- XPathAncestorIterator.cs
- RegexParser.cs
- TypeValidationEventArgs.cs
- DesignTimeTemplateParser.cs
- TextAutomationPeer.cs
- WebBrowserNavigatedEventHandler.cs
- SchemaNotation.cs
- EdmError.cs
- SelectionWordBreaker.cs
- MethodToken.cs
- ScalarConstant.cs
- DataGridColumn.cs
- XamlTemplateSerializer.cs
- OperatingSystemVersionCheck.cs
- NumericUpDown.cs
- ViewGenResults.cs
- InputProcessorProfilesLoader.cs
- RangeValueProviderWrapper.cs
- _NativeSSPI.cs
- GradientPanel.cs
- ParameterInfo.cs
- BridgeDataReader.cs
- SchemaCollectionCompiler.cs
- SingleResultAttribute.cs
- SignedInfo.cs
- TagPrefixInfo.cs
- XmlSchemaExporter.cs
- ExpressionHelper.cs
- CatalogZoneBase.cs
- ResourceAttributes.cs
- ZipIOFileItemStream.cs
- XmlEncodedRawTextWriter.cs
- QuaternionAnimation.cs
- StylusCollection.cs
- SqlRowUpdatingEvent.cs
- WsiProfilesElementCollection.cs
- CatalogPart.cs
- ContextMenuStripGroup.cs
- PluralizationService.cs
- PeerNameRecord.cs
- TypefaceMap.cs
- SimpleApplicationHost.cs
- PersonalizationEntry.cs
- Win32Exception.cs
- TemplateBindingExpression.cs
- DbConnectionPool.cs
- AdornerPresentationContext.cs
- TabControl.cs
- WindowInteropHelper.cs
- SoapInteropTypes.cs
- SecurityUtils.cs
- HandledMouseEvent.cs
- TimeSpanSecondsConverter.cs
- DataGridViewLinkColumn.cs
- DecoderBestFitFallback.cs
- AttributeConverter.cs
- TextProperties.cs
- XmlILConstructAnalyzer.cs
- PasswordBox.cs
- DataGridViewColumn.cs
- DocumentsTrace.cs
- DataServiceHost.cs
- Debug.cs
- CacheDependency.cs
- LocatorPart.cs
- RoutedUICommand.cs
- SettingsBindableAttribute.cs
- While.cs
- Config.cs
- VariableQuery.cs