Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / WinForms / Managed / System / WinForms / WindowsFormsSectionHandler.cs / 1 / WindowsFormsSectionHandler.cs
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode", Scope="member", Target="System.Windows.Forms.WindowsFormsSectionHandler..ctor()")]
namespace System.Windows.Forms {
using System;
using System.Diagnostics;
using System.Configuration;
public sealed class WindowsFormsSection : ConfigurationSection {
internal const bool JitDebuggingDefault = false;
private static ConfigurationPropertyCollection s_properties;
private static ConfigurationProperty s_propJitDebugging;
internal static WindowsFormsSection GetSection() {
WindowsFormsSection section = null;
try {
section = (WindowsFormsSection) System.Configuration.PrivilegedConfigurationManager.GetSection("system.windows.forms");
}
catch {
Debug.Fail("Exception loading config for windows forms");
section = new WindowsFormsSection();
}
return section;
}
private static ConfigurationPropertyCollection EnsureStaticPropertyBag() {
if (s_properties == null) {
s_propJitDebugging = new ConfigurationProperty("jitDebugging", typeof(bool), JitDebuggingDefault, ConfigurationPropertyOptions.None);
ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection();
properties.Add(s_propJitDebugging);
s_properties = properties;
}
return s_properties;
}
public WindowsFormsSection() {
EnsureStaticPropertyBag();
}
protected override ConfigurationPropertyCollection Properties {
get {
return EnsureStaticPropertyBag();
}
}
[ConfigurationProperty("jitDebugging", DefaultValue=JitDebuggingDefault)]
public bool JitDebugging {
get {
return (bool) base[s_propJitDebugging];
}
set {
base[s_propJitDebugging] = value;
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode", Scope="member", Target="System.Windows.Forms.WindowsFormsSectionHandler..ctor()")]
namespace System.Windows.Forms {
using System;
using System.Diagnostics;
using System.Configuration;
public sealed class WindowsFormsSection : ConfigurationSection {
internal const bool JitDebuggingDefault = false;
private static ConfigurationPropertyCollection s_properties;
private static ConfigurationProperty s_propJitDebugging;
internal static WindowsFormsSection GetSection() {
WindowsFormsSection section = null;
try {
section = (WindowsFormsSection) System.Configuration.PrivilegedConfigurationManager.GetSection("system.windows.forms");
}
catch {
Debug.Fail("Exception loading config for windows forms");
section = new WindowsFormsSection();
}
return section;
}
private static ConfigurationPropertyCollection EnsureStaticPropertyBag() {
if (s_properties == null) {
s_propJitDebugging = new ConfigurationProperty("jitDebugging", typeof(bool), JitDebuggingDefault, ConfigurationPropertyOptions.None);
ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection();
properties.Add(s_propJitDebugging);
s_properties = properties;
}
return s_properties;
}
public WindowsFormsSection() {
EnsureStaticPropertyBag();
}
protected override ConfigurationPropertyCollection Properties {
get {
return EnsureStaticPropertyBag();
}
}
[ConfigurationProperty("jitDebugging", DefaultValue=JitDebuggingDefault)]
public bool JitDebugging {
get {
return (bool) base[s_propJitDebugging];
}
set {
base[s_propJitDebugging] = value;
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SmtpSection.cs
- ListenerAdaptersInstallComponent.cs
- CardSpaceSelector.cs
- OleDbEnumerator.cs
- PathFigureCollection.cs
- MethodCallExpression.cs
- ComponentResourceKey.cs
- Security.cs
- WeakReferenceEnumerator.cs
- CheckBox.cs
- DataGridViewCellStateChangedEventArgs.cs
- Walker.cs
- XmlSchemaExporter.cs
- DataSourceListEditor.cs
- SQLDecimal.cs
- ToolTipService.cs
- SpellCheck.cs
- ControlAdapter.cs
- QueryOptionExpression.cs
- DecoderReplacementFallback.cs
- SeekableReadStream.cs
- XPathAncestorQuery.cs
- CachedBitmap.cs
- QilStrConcat.cs
- CancellationHandler.cs
- BaseCodeDomTreeGenerator.cs
- MatrixAnimationBase.cs
- ServiceInfo.cs
- counter.cs
- SoapMessage.cs
- ProjectionPruner.cs
- AQNBuilder.cs
- PolyQuadraticBezierSegment.cs
- PasswordRecovery.cs
- ServicePointManager.cs
- DocumentEventArgs.cs
- TrackingServices.cs
- ApplicationBuildProvider.cs
- EntityTemplateFactory.cs
- ArrangedElement.cs
- DataGridColumn.cs
- CapabilitiesState.cs
- SqlAliaser.cs
- AlternateViewCollection.cs
- MemoryFailPoint.cs
- CacheEntry.cs
- ServiceControllerDesigner.cs
- StylusPointProperty.cs
- RuleProcessor.cs
- CreatingCookieEventArgs.cs
- DllNotFoundException.cs
- ComponentCollection.cs
- CodeIndexerExpression.cs
- TemplateBindingExpression.cs
- PeerNameResolver.cs
- TdsParserStateObject.cs
- DataGridRowsPresenter.cs
- DocumentPageView.cs
- UnsafeNativeMethods.cs
- SapiGrammar.cs
- CharEntityEncoderFallback.cs
- RawKeyboardInputReport.cs
- hresults.cs
- AutomationPeer.cs
- NativeCompoundFileAPIs.cs
- Faults.cs
- PanelStyle.cs
- WebPartTracker.cs
- FormViewUpdateEventArgs.cs
- WebSysDescriptionAttribute.cs
- QilGeneratorEnv.cs
- VirtualPathProvider.cs
- XpsFont.cs
- ConsoleCancelEventArgs.cs
- AppSettingsSection.cs
- Serializer.cs
- FixedSOMLineCollection.cs
- UnsafeNativeMethods.cs
- WebControlParameterProxy.cs
- CacheAxisQuery.cs
- HttpClientCertificate.cs
- OrthographicCamera.cs
- GridViewColumnCollection.cs
- OdbcReferenceCollection.cs
- IdentityNotMappedException.cs
- HtmlInputPassword.cs
- EventDescriptor.cs
- TrackBarRenderer.cs
- XmlNodeList.cs
- PieceNameHelper.cs
- TableDetailsCollection.cs
- AuthenticateEventArgs.cs
- AuthenticodeSignatureInformation.cs
- DetailsViewRowCollection.cs
- MasterPageParser.cs
- SHA384.cs
- TrackingStringDictionary.cs
- IISUnsafeMethods.cs
- NavigationService.cs
- ApplicationInfo.cs