Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Extensions / Configuration / ScriptingRoleServiceSection.cs / 1305376 / ScriptingRoleServiceSection.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 ScriptingRoleServiceSection : ConfigurationSection {
private static readonly ConfigurationProperty _propEnabled =
new ConfigurationProperty("enabled",
typeof(bool),
false);
private static ConfigurationPropertyCollection _properties = BuildProperties();
private static ConfigurationPropertyCollection BuildProperties() {
ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection();
properties.Add(_propEnabled);
return properties;
}
internal static ScriptingRoleServiceSection GetConfigurationSection() {
return (ScriptingRoleServiceSection)WebConfigurationManager.GetWebApplicationSection("system.web.extensions/scripting/webServices/roleService");
}
protected override ConfigurationPropertyCollection Properties {
get {
return _properties;
}
}
[ConfigurationProperty("enabled", DefaultValue = false)]
public bool Enabled {
get {
return (bool)this[_propEnabled];
}
set {
this[_propEnabled] = 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 ScriptingRoleServiceSection : ConfigurationSection {
private static readonly ConfigurationProperty _propEnabled =
new ConfigurationProperty("enabled",
typeof(bool),
false);
private static ConfigurationPropertyCollection _properties = BuildProperties();
private static ConfigurationPropertyCollection BuildProperties() {
ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection();
properties.Add(_propEnabled);
return properties;
}
internal static ScriptingRoleServiceSection GetConfigurationSection() {
return (ScriptingRoleServiceSection)WebConfigurationManager.GetWebApplicationSection("system.web.extensions/scripting/webServices/roleService");
}
protected override ConfigurationPropertyCollection Properties {
get {
return _properties;
}
}
[ConfigurationProperty("enabled", DefaultValue = false)]
public bool Enabled {
get {
return (bool)this[_propEnabled];
}
set {
this[_propEnabled] = 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
- ThicknessAnimation.cs
- XPathDescendantIterator.cs
- CommandID.cs
- DelegatingMessage.cs
- WebPartCatalogAddVerb.cs
- CookieProtection.cs
- ResumeStoryboard.cs
- SystemThemeKey.cs
- Parameter.cs
- XmlSchemaImport.cs
- SmtpDigestAuthenticationModule.cs
- IResourceProvider.cs
- TreeViewCancelEvent.cs
- SchemaTypeEmitter.cs
- KeyBinding.cs
- LayoutEngine.cs
- ToolStripRenderer.cs
- ColumnWidthChangedEvent.cs
- BamlRecordHelper.cs
- RootBrowserWindowAutomationPeer.cs
- HttpVersion.cs
- LowerCaseStringConverter.cs
- TextTreeUndoUnit.cs
- NodeInfo.cs
- ReturnValue.cs
- KeyManager.cs
- WebBrowserNavigatingEventHandler.cs
- ToolStripItemImageRenderEventArgs.cs
- ToolStripStatusLabel.cs
- DiscreteKeyFrames.cs
- BuildResultCache.cs
- ProbeMatchesMessage11.cs
- DynamicDataExtensions.cs
- AggregationMinMaxHelpers.cs
- WebServiceHandler.cs
- TableLayoutColumnStyleCollection.cs
- RealizationDrawingContextWalker.cs
- AddInToken.cs
- Quaternion.cs
- SqlUserDefinedTypeAttribute.cs
- CoTaskMemHandle.cs
- DataBindingHandlerAttribute.cs
- DataGrid.cs
- WeakReferenceKey.cs
- HwndSourceKeyboardInputSite.cs
- PointLightBase.cs
- AvTraceFormat.cs
- IPipelineRuntime.cs
- CaretElement.cs
- StrokeCollection.cs
- UnsafeNativeMethods.cs
- PartialTrustVisibleAssemblyCollection.cs
- TemplateControlBuildProvider.cs
- remotingproxy.cs
- SqlProfileProvider.cs
- Utils.cs
- XmlComplianceUtil.cs
- IsolatedStorageException.cs
- InvokeHandlers.cs
- OuterGlowBitmapEffect.cs
- DependencyProperty.cs
- EntityDataSourceEntityTypeFilterItem.cs
- TemplateControlBuildProvider.cs
- TextTreeUndoUnit.cs
- DocumentViewerBase.cs
- SiteMapNodeItemEventArgs.cs
- SubMenuStyleCollectionEditor.cs
- TypeProvider.cs
- OdbcStatementHandle.cs
- EnumerationRangeValidationUtil.cs
- CalendarModeChangedEventArgs.cs
- MetadataCollection.cs
- Tokenizer.cs
- StyleSheetRefUrlEditor.cs
- DataErrorValidationRule.cs
- TimeStampChecker.cs
- BackgroundWorker.cs
- SmiEventSink_DeferedProcessing.cs
- CacheChildrenQuery.cs
- EventLogPermission.cs
- TitleStyle.cs
- SessionStateContainer.cs
- ExpressionConverter.cs
- NativeMethodsOther.cs
- ObjectListComponentEditor.cs
- MatrixTransform3D.cs
- DesignerTransactionCloseEvent.cs
- WindowsUpDown.cs
- errorpatternmatcher.cs
- BitmapMetadataEnumerator.cs
- XslAstAnalyzer.cs
- TextBox.cs
- TraceContext.cs
- WebColorConverter.cs
- Floater.cs
- AccessDataSourceWizardForm.cs
- PassportAuthenticationModule.cs
- BitmapImage.cs
- SmtpReplyReaderFactory.cs
- GenericNameHandler.cs