Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Extensions / Configuration / ScriptingAuthenticationServiceSection.cs / 1305376 / ScriptingAuthenticationServiceSection.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Web.Configuration {
using System;
using System.Configuration;
using System.Web;
using System.Web.Configuration;
public sealed class ScriptingAuthenticationServiceSection : ConfigurationSection {
private static readonly ConfigurationProperty _propEnabled =
new ConfigurationProperty("enabled",
typeof(bool),
false);
private static readonly ConfigurationProperty _propRequireSSL =
new ConfigurationProperty("requireSSL",
typeof(bool),
false);
private static ConfigurationPropertyCollection _properties = BuildProperties();
private static ConfigurationPropertyCollection BuildProperties() {
ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection();
properties.Add(_propEnabled);
properties.Add(_propRequireSSL);
return properties;
}
internal static ScriptingAuthenticationServiceSection GetConfigurationSection() {
return (ScriptingAuthenticationServiceSection)WebConfigurationManager.GetWebApplicationSection("system.web.extensions/scripting/webServices/authenticationService");
}
protected override ConfigurationPropertyCollection Properties {
get { return _properties; }
}
[ConfigurationProperty("enabled", DefaultValue = false)]
public bool Enabled {
get { return (bool)this[_propEnabled]; }
set { this[_propEnabled] = value; }
}
[ConfigurationProperty("requireSSL", DefaultValue = false)]
public bool RequireSSL {
get { return (bool) this[_propRequireSSL]; }
set { this[_propRequireSSL] = value; }
}
}
}
// 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.Configuration;
using System.Web;
using System.Web.Configuration;
public sealed class ScriptingAuthenticationServiceSection : ConfigurationSection {
private static readonly ConfigurationProperty _propEnabled =
new ConfigurationProperty("enabled",
typeof(bool),
false);
private static readonly ConfigurationProperty _propRequireSSL =
new ConfigurationProperty("requireSSL",
typeof(bool),
false);
private static ConfigurationPropertyCollection _properties = BuildProperties();
private static ConfigurationPropertyCollection BuildProperties() {
ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection();
properties.Add(_propEnabled);
properties.Add(_propRequireSSL);
return properties;
}
internal static ScriptingAuthenticationServiceSection GetConfigurationSection() {
return (ScriptingAuthenticationServiceSection)WebConfigurationManager.GetWebApplicationSection("system.web.extensions/scripting/webServices/authenticationService");
}
protected override ConfigurationPropertyCollection Properties {
get { return _properties; }
}
[ConfigurationProperty("enabled", DefaultValue = false)]
public bool Enabled {
get { return (bool)this[_propEnabled]; }
set { this[_propEnabled] = value; }
}
[ConfigurationProperty("requireSSL", DefaultValue = false)]
public bool RequireSSL {
get { return (bool) this[_propRequireSSL]; }
set { this[_propRequireSSL] = value; }
}
}
}
// 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
- TextDecorationCollectionConverter.cs
- LinqDataSourceHelper.cs
- EditableTreeList.cs
- SecurityTokenException.cs
- DataGridRowsPresenter.cs
- SHA384.cs
- SignatureToken.cs
- BamlTreeMap.cs
- ParamArrayAttribute.cs
- DataGridViewTextBoxEditingControl.cs
- IUnknownConstantAttribute.cs
- AdornerDecorator.cs
- XmlNode.cs
- DrawingDrawingContext.cs
- TagPrefixAttribute.cs
- TransportBindingElementImporter.cs
- UdpDiscoveryEndpointElement.cs
- ResourceProviderFactory.cs
- ProfilePropertySettings.cs
- RegisteredHiddenField.cs
- ToolBar.cs
- StylusTip.cs
- BatchParser.cs
- OpCodes.cs
- DocumentSchemaValidator.cs
- UserControlParser.cs
- MessageEventSubscriptionService.cs
- ITextView.cs
- LayoutEvent.cs
- ImageCodecInfoPrivate.cs
- OdbcEnvironment.cs
- MultiAsyncResult.cs
- AnimatedTypeHelpers.cs
- NavigationHelper.cs
- Int32.cs
- ZipFileInfoCollection.cs
- StrongNameIdentityPermission.cs
- SkinBuilder.cs
- Privilege.cs
- InternalCache.cs
- XpsDocument.cs
- InvalidPrinterException.cs
- NamespaceList.cs
- ProcessThread.cs
- CodeTypeMember.cs
- AnnotationStore.cs
- Decimal.cs
- _TLSstream.cs
- JavascriptCallbackMessageInspector.cs
- TimelineGroup.cs
- CommandHelper.cs
- SQLByteStorage.cs
- HttpHandlerActionCollection.cs
- StylusPointPropertyInfo.cs
- KeyboardInputProviderAcquireFocusEventArgs.cs
- DynamicDocumentPaginator.cs
- XamlTreeBuilder.cs
- NullableLongAverageAggregationOperator.cs
- ArraySegment.cs
- HttpCapabilitiesBase.cs
- StatusBarPanel.cs
- DataFormats.cs
- TextBoxBaseDesigner.cs
- PointAnimationClockResource.cs
- HttpApplicationFactory.cs
- IssuanceLicense.cs
- BamlLocalizableResourceKey.cs
- DesignTimeVisibleAttribute.cs
- HttpServerUtilityBase.cs
- CookieHandler.cs
- FormViewRow.cs
- ResourceReferenceKeyNotFoundException.cs
- ErasingStroke.cs
- ScalarType.cs
- VirtualDirectoryMappingCollection.cs
- XsltOutput.cs
- DataGridViewCellParsingEventArgs.cs
- HtmlMeta.cs
- UInt16Storage.cs
- DataKeyArray.cs
- ProfileService.cs
- Literal.cs
- SettingsProviderCollection.cs
- MaskedTextProvider.cs
- ThicknessAnimationBase.cs
- WindowsStatusBar.cs
- AnimationStorage.cs
- PartialArray.cs
- FramingEncoders.cs
- RemoteWebConfigurationHostStream.cs
- ToolStripDropDownDesigner.cs
- XmlSchemaIdentityConstraint.cs
- RadioButtonRenderer.cs
- PenContexts.cs
- XmlSchemaValidator.cs
- NonValidatingSecurityTokenAuthenticator.cs
- ChangePasswordDesigner.cs
- WindowsListViewScroll.cs
- JoinSymbol.cs
- TypeValidationEventArgs.cs