Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- OrderingExpression.cs
- PageAdapter.cs
- TemplateXamlParser.cs
- ApplicationTrust.cs
- Duration.cs
- StaticTextPointer.cs
- TrackingDataItemValue.cs
- ImageFormat.cs
- FileCodeGroup.cs
- FileDialog_Vista_Interop.cs
- DefaultEvaluationContext.cs
- BaseParser.cs
- Parameter.cs
- EventlogProvider.cs
- ArrayEditor.cs
- ConfigsHelper.cs
- UIAgentAsyncBeginRequest.cs
- LinkArea.cs
- ImageKeyConverter.cs
- ComponentResourceManager.cs
- X509CertificateClaimSet.cs
- MulticastNotSupportedException.cs
- ConfigurationSectionGroupCollection.cs
- HtmlImage.cs
- StyleSelector.cs
- BindingGraph.cs
- FlowSwitchLink.cs
- PageHandlerFactory.cs
- ExpandableObjectConverter.cs
- SecurityElement.cs
- RSAOAEPKeyExchangeDeformatter.cs
- CheckableControlBaseAdapter.cs
- XmlSchemaSequence.cs
- SourceFilter.cs
- Image.cs
- WindowsContainer.cs
- MdiWindowListStrip.cs
- TextEditorDragDrop.cs
- XmlSchemaSimpleTypeList.cs
- OperationCanceledException.cs
- FreezableDefaultValueFactory.cs
- OptimalTextSource.cs
- GridViewUpdatedEventArgs.cs
- CoTaskMemHandle.cs
- HelpKeywordAttribute.cs
- ConfigurationSchemaErrors.cs
- GridViewColumnCollectionChangedEventArgs.cs
- WindowsFormsLinkLabel.cs
- Item.cs
- ToolStripPanelRenderEventArgs.cs
- tooltip.cs
- DataGridViewTopRowAccessibleObject.cs
- FormViewInsertedEventArgs.cs
- ArrayConverter.cs
- BufferedReadStream.cs
- NativeMethods.cs
- SspiWrapper.cs
- ActiveXContainer.cs
- WebPartActionVerb.cs
- GenericsNotImplementedException.cs
- WebPartUtil.cs
- SafeThreadHandle.cs
- MenuItemBindingCollection.cs
- FileEnumerator.cs
- ViewgenContext.cs
- UserPreferenceChangingEventArgs.cs
- EnumMemberAttribute.cs
- MetaModel.cs
- DependencyPropertyAttribute.cs
- NameSpaceExtractor.cs
- RSAOAEPKeyExchangeDeformatter.cs
- SqlTypeConverter.cs
- ChildTable.cs
- NativeCompoundFileAPIs.cs
- BamlReader.cs
- XmlEntityReference.cs
- ApplicationDirectory.cs
- RangeValueProviderWrapper.cs
- ContentOperations.cs
- ServicePoint.cs
- DtdParser.cs
- CollectionBase.cs
- NoneExcludedImageIndexConverter.cs
- InfoCardRSAPKCS1SignatureFormatter.cs
- MessagePropertyDescription.cs
- StructuredCompositeActivityDesigner.cs
- BindingExpressionUncommonField.cs
- CalendarAutomationPeer.cs
- Label.cs
- odbcmetadatacolumnnames.cs
- LinqDataSourceDisposeEventArgs.cs
- SafeEventLogReadHandle.cs
- AutoGeneratedField.cs
- WindowsListViewItemCheckBox.cs
- ProgressChangedEventArgs.cs
- Peer.cs
- ParsedAttributeCollection.cs
- MenuItemStyle.cs
- NonceToken.cs
- Function.cs