Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Web / System / Web / Services / Configuration / DiagnosticsElement.cs / 1305376 / DiagnosticsElement.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.Web.Services.Configuration { using System; using System.Configuration; using System.ComponentModel; using System.IO; using System.Security.Permissions; using System.Threading; using System.Web.Configuration; using System.Web.Hosting; using System.Xml; public sealed class DiagnosticsElement : ConfigurationElement { public DiagnosticsElement() : base() { this.properties.Add(this.suppressReturningExceptions); } [ConfigurationProperty("suppressReturningExceptions", DefaultValue = false)] public bool SuppressReturningExceptions { get { return (bool)base[suppressReturningExceptions]; } set { base[suppressReturningExceptions] = value; } } protected override ConfigurationPropertyCollection Properties { get { return this.properties; } } ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection(); readonly ConfigurationProperty suppressReturningExceptions = new ConfigurationProperty("suppressReturningExceptions", typeof(bool), false); } } // 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
- KerberosSecurityTokenProvider.cs
- InterleavedZipPartStream.cs
- AddressHeader.cs
- EndpointAddressMessageFilter.cs
- IODescriptionAttribute.cs
- DocumentGridPage.cs
- RegistrationServices.cs
- DeclarativeConditionsCollection.cs
- ArraySegment.cs
- InputBuffer.cs
- KeyGestureValueSerializer.cs
- BackgroundWorker.cs
- ValueCollectionParameterReader.cs
- TextRange.cs
- OleDbDataReader.cs
- AbstractDataSvcMapFileLoader.cs
- ConnectionPoolManager.cs
- TrackingProfile.cs
- ISAPIRuntime.cs
- TagPrefixInfo.cs
- MsmqNonTransactedPoisonHandler.cs
- WebConfigurationHost.cs
- ImmutableObjectAttribute.cs
- UnitySerializationHolder.cs
- Calendar.cs
- ColorInterpolationModeValidation.cs
- DirtyTextRange.cs
- ValidationEventArgs.cs
- AsyncWaitHandle.cs
- SoundPlayerAction.cs
- InstanceKeyNotReadyException.cs
- ByteStreamMessageEncoder.cs
- GuidConverter.cs
- UserThread.cs
- NavigationProperty.cs
- UnicodeEncoding.cs
- AttributedMetaModel.cs
- SqlDataSourceAdvancedOptionsForm.cs
- TableLayoutPanelCellPosition.cs
- EntityUtil.cs
- DynamicActionMessageFilter.cs
- DataBoundControlAdapter.cs
- httpapplicationstate.cs
- DiscoveryRequestHandler.cs
- HttpContextBase.cs
- CompilerCollection.cs
- HtmlHead.cs
- Splitter.cs
- TiffBitmapDecoder.cs
- UIAgentAsyncParams.cs
- WindowsFormsSynchronizationContext.cs
- HTMLTagNameToTypeMapper.cs
- XmlDataLoader.cs
- TemplateControl.cs
- SystemGatewayIPAddressInformation.cs
- Activity.cs
- SqlEnums.cs
- securestring.cs
- KeyBinding.cs
- MessageQueueConverter.cs
- SerializationFieldInfo.cs
- SelectManyQueryOperator.cs
- XmlObjectSerializer.cs
- Rotation3DAnimation.cs
- TokenizerHelper.cs
- XslAstAnalyzer.cs
- ConstructorExpr.cs
- ConnectionPointCookie.cs
- PageFunction.cs
- AuthenticatingEventArgs.cs
- XmlSchemaAny.cs
- EnumerableRowCollectionExtensions.cs
- AssemblyGen.cs
- WindowsStatic.cs
- DesignerActionUIStateChangeEventArgs.cs
- CodeSubDirectory.cs
- Debug.cs
- XsltConvert.cs
- EntityDataSourceState.cs
- LogFlushAsyncResult.cs
- PointLightBase.cs
- FusionWrap.cs
- InputLanguage.cs
- QueryCorrelationInitializer.cs
- DockPatternIdentifiers.cs
- PlainXmlSerializer.cs
- MonthCalendar.cs
- Wizard.cs
- NamedPermissionSet.cs
- SmiMetaData.cs
- IndexedEnumerable.cs
- ZipIOModeEnforcingStream.cs
- XsdCachingReader.cs
- XpsS0ValidatingLoader.cs
- sqlstateclientmanager.cs
- COM2IDispatchConverter.cs
- WebAdminConfigurationHelper.cs
- RelationshipManager.cs
- ToolStripSplitButton.cs
- HttpProxyTransportBindingElement.cs