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
- SQLMoney.cs
- assemblycache.cs
- TCPClient.cs
- XmlUTF8TextReader.cs
- DetailsViewPageEventArgs.cs
- DateTimeStorage.cs
- InputManager.cs
- NamespaceEmitter.cs
- WebBrowserBase.cs
- RayMeshGeometry3DHitTestResult.cs
- BitmapEffect.cs
- ByteArrayHelperWithString.cs
- PrinterResolution.cs
- HtmlToClrEventProxy.cs
- ListItemCollection.cs
- IERequestCache.cs
- IdleTimeoutMonitor.cs
- HotSpotCollection.cs
- SafeProcessHandle.cs
- HttpDictionary.cs
- HtmlTextArea.cs
- XmlTypeMapping.cs
- CommandManager.cs
- SolidBrush.cs
- ACE.cs
- TextTrailingWordEllipsis.cs
- TransactionWaitAsyncResult.cs
- TransformPattern.cs
- SqlPersonalizationProvider.cs
- _IPv4Address.cs
- Util.cs
- PackagingUtilities.cs
- MarkupCompilePass2.cs
- CompilerScopeManager.cs
- PolyBezierSegment.cs
- SafeSecurityHandles.cs
- TextLine.cs
- MessageQueuePermission.cs
- CookielessHelper.cs
- DynamicValidatorEventArgs.cs
- RadialGradientBrush.cs
- ConnectionManagementSection.cs
- QilInvokeEarlyBound.cs
- StoryFragments.cs
- cookie.cs
- ServiceAuthorizationManager.cs
- SoapMessage.cs
- StringCollection.cs
- BaseDataListDesigner.cs
- InitiatorSessionSymmetricTransportSecurityProtocol.cs
- D3DImage.cs
- ItemCheckedEvent.cs
- ParsedAttributeCollection.cs
- SqlWebEventProvider.cs
- Vector3D.cs
- DoubleAnimationClockResource.cs
- ListBoxItemWrapperAutomationPeer.cs
- MsmqIntegrationBinding.cs
- QilSortKey.cs
- SelectionWordBreaker.cs
- TextTreeRootNode.cs
- SqlUserDefinedAggregateAttribute.cs
- CapacityStreamGeometryContext.cs
- MetabaseSettings.cs
- RegexCaptureCollection.cs
- FixedSOMPageElement.cs
- CodePropertyReferenceExpression.cs
- ToolStripItemImageRenderEventArgs.cs
- ConfigurationLocationCollection.cs
- TextProperties.cs
- EditingMode.cs
- WebPartUserCapability.cs
- EndSelectCardRequest.cs
- TypeLibConverter.cs
- TextLine.cs
- TimeSpanMinutesConverter.cs
- TraceEventCache.cs
- XmlSchemaSet.cs
- CompilationLock.cs
- TextCharacters.cs
- WebExceptionStatus.cs
- SqlFacetAttribute.cs
- MouseEvent.cs
- XmlNodeChangedEventArgs.cs
- TableLayoutSettingsTypeConverter.cs
- AnnotationAdorner.cs
- SetterBase.cs
- DataSourceDesigner.cs
- SlipBehavior.cs
- BooleanFacetDescriptionElement.cs
- SspiNegotiationTokenAuthenticatorState.cs
- StringUtil.cs
- ControlPaint.cs
- _LocalDataStoreMgr.cs
- StatusBarPanelClickEvent.cs
- HtmlLink.cs
- ExpressionBinding.cs
- ErrorProvider.cs
- PhonemeConverter.cs
- Serializer.cs