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
- DataObjectFieldAttribute.cs
- XpsTokenContext.cs
- AdvancedBindingPropertyDescriptor.cs
- CompositeDataBoundControl.cs
- ObjectDataSourceView.cs
- SecurityBindingElementImporter.cs
- SafeMILHandle.cs
- HuffModule.cs
- NameTable.cs
- CodeDirectoryCompiler.cs
- WinCategoryAttribute.cs
- Activator.cs
- BitmapMetadata.cs
- MetadataPropertyCollection.cs
- EncoderExceptionFallback.cs
- ObjectDataSource.cs
- SemaphoreSecurity.cs
- Validator.cs
- ProxyFragment.cs
- ResourceWriter.cs
- IPPacketInformation.cs
- DataPointer.cs
- BypassElementCollection.cs
- AuthenticationService.cs
- ListViewGroupItemCollection.cs
- X509Utils.cs
- ModulesEntry.cs
- VectorAnimationUsingKeyFrames.cs
- ValueUtilsSmi.cs
- QueryTreeBuilder.cs
- MeasurementDCInfo.cs
- SizeValueSerializer.cs
- EntityStoreSchemaGenerator.cs
- shaper.cs
- MemoryPressure.cs
- UniqueContractNameValidationBehavior.cs
- COM2Enum.cs
- TableRowGroup.cs
- Roles.cs
- PseudoWebRequest.cs
- XmlMemberMapping.cs
- SendMailErrorEventArgs.cs
- Inflater.cs
- LinqDataSourceView.cs
- CodeAccessPermission.cs
- PathGradientBrush.cs
- ToolStripProgressBar.cs
- DoubleCollectionConverter.cs
- RuleRefElement.cs
- CodeDelegateInvokeExpression.cs
- ReturnEventArgs.cs
- NamedElement.cs
- FontStretch.cs
- LineGeometry.cs
- RightsManagementLicense.cs
- TextTrailingCharacterEllipsis.cs
- DataFieldEditor.cs
- Int32Storage.cs
- XmlName.cs
- ArgIterator.cs
- StructuredProperty.cs
- QueryAccessibilityHelpEvent.cs
- Typography.cs
- SQLBytesStorage.cs
- ObjectDataSourceDisposingEventArgs.cs
- WebConfigurationManager.cs
- DataBoundLiteralControl.cs
- ProviderIncompatibleException.cs
- AuthenticationConfig.cs
- TabControlAutomationPeer.cs
- CodeDomSerializationProvider.cs
- XmlWriterDelegator.cs
- TreeNodeClickEventArgs.cs
- WriteStateInfoBase.cs
- TextEditorCopyPaste.cs
- JoinGraph.cs
- BuilderPropertyEntry.cs
- ProfileGroupSettingsCollection.cs
- ObjectFullSpanRewriter.cs
- MultiPageTextView.cs
- EntitySqlException.cs
- TypeHelper.cs
- TypeValidationEventArgs.cs
- DmlSqlGenerator.cs
- ObjectQuery_EntitySqlExtensions.cs
- ResourceContainer.cs
- GenericPrincipal.cs
- TextReader.cs
- DocComment.cs
- SmtpNetworkElement.cs
- SuppressMergeCheckAttribute.cs
- TextTreeExtractElementUndoUnit.cs
- AccessorTable.cs
- NativeObjectSecurity.cs
- ZipFileInfoCollection.cs
- RemoteTokenFactory.cs
- OrthographicCamera.cs
- FixUp.cs
- ExceptionHandlersDesigner.cs
- ISAPIWorkerRequest.cs