Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / TraceSection.cs / 1305376 / TraceSection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System; using System.Xml; using System.Configuration; using System.Collections.Specialized; using System.Collections; using System.IO; using System.Text; using System.Security.Permissions; /**/ public sealed class TraceSection : ConfigurationSection { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propEnabled = new ConfigurationProperty("enabled", typeof(bool), false, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propLocalOnly = new ConfigurationProperty("localOnly", typeof(bool), true, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propMostRecent = new ConfigurationProperty("mostRecent", typeof(bool), false, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propPageOutput = new ConfigurationProperty("pageOutput", typeof(bool), false, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propRequestLimit = new ConfigurationProperty("requestLimit", typeof(int), 10, null, StdValidatorsAndConverters.PositiveIntegerValidator, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propMode = new ConfigurationProperty("traceMode", typeof(TraceDisplayMode), TraceDisplayMode.SortByTime, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _writeToDiagnosticTrace = new ConfigurationProperty("writeToDiagnosticsTrace", typeof(bool), false, ConfigurationPropertyOptions.None); static TraceSection() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propEnabled); _properties.Add(_propLocalOnly); _properties.Add(_propMostRecent); _properties.Add(_propPageOutput); _properties.Add(_propRequestLimit); _properties.Add(_propMode); _properties.Add(_writeToDiagnosticTrace); } public TraceSection() { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("enabled", DefaultValue = false)] public bool Enabled { get { return (bool)base[_propEnabled]; } set { base[_propEnabled] = value; } } [ConfigurationProperty("mostRecent", DefaultValue = false)] public bool MostRecent { get { return (bool)base[_propMostRecent]; } set { base[_propMostRecent] = value; } } [ConfigurationProperty("localOnly", DefaultValue = true)] public bool LocalOnly { get { return (bool)base[_propLocalOnly]; } set { base[_propLocalOnly] = value; } } [ConfigurationProperty("pageOutput", DefaultValue = false)] public bool PageOutput { get { return (bool)base[_propPageOutput]; } set { base[_propPageOutput] = value; } } [ConfigurationProperty("requestLimit", DefaultValue = 10)] [IntegerValidator(MinValue = 0)] public int RequestLimit { get { return (int)base[_propRequestLimit]; } set { base[_propRequestLimit] = value; } } [ConfigurationProperty("traceMode", DefaultValue = TraceDisplayMode.SortByTime)] public TraceDisplayMode TraceMode { get { return (TraceDisplayMode)base[_propMode]; } set { base[_propMode] = value; } } [ConfigurationProperty("writeToDiagnosticsTrace", DefaultValue = false)] public bool WriteToDiagnosticsTrace { get { return (bool)base[_writeToDiagnosticTrace]; } set { base[_writeToDiagnosticTrace] = 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.Xml; using System.Configuration; using System.Collections.Specialized; using System.Collections; using System.IO; using System.Text; using System.Security.Permissions; /**/ public sealed class TraceSection : ConfigurationSection { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propEnabled = new ConfigurationProperty("enabled", typeof(bool), false, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propLocalOnly = new ConfigurationProperty("localOnly", typeof(bool), true, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propMostRecent = new ConfigurationProperty("mostRecent", typeof(bool), false, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propPageOutput = new ConfigurationProperty("pageOutput", typeof(bool), false, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propRequestLimit = new ConfigurationProperty("requestLimit", typeof(int), 10, null, StdValidatorsAndConverters.PositiveIntegerValidator, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propMode = new ConfigurationProperty("traceMode", typeof(TraceDisplayMode), TraceDisplayMode.SortByTime, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _writeToDiagnosticTrace = new ConfigurationProperty("writeToDiagnosticsTrace", typeof(bool), false, ConfigurationPropertyOptions.None); static TraceSection() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propEnabled); _properties.Add(_propLocalOnly); _properties.Add(_propMostRecent); _properties.Add(_propPageOutput); _properties.Add(_propRequestLimit); _properties.Add(_propMode); _properties.Add(_writeToDiagnosticTrace); } public TraceSection() { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("enabled", DefaultValue = false)] public bool Enabled { get { return (bool)base[_propEnabled]; } set { base[_propEnabled] = value; } } [ConfigurationProperty("mostRecent", DefaultValue = false)] public bool MostRecent { get { return (bool)base[_propMostRecent]; } set { base[_propMostRecent] = value; } } [ConfigurationProperty("localOnly", DefaultValue = true)] public bool LocalOnly { get { return (bool)base[_propLocalOnly]; } set { base[_propLocalOnly] = value; } } [ConfigurationProperty("pageOutput", DefaultValue = false)] public bool PageOutput { get { return (bool)base[_propPageOutput]; } set { base[_propPageOutput] = value; } } [ConfigurationProperty("requestLimit", DefaultValue = 10)] [IntegerValidator(MinValue = 0)] public int RequestLimit { get { return (int)base[_propRequestLimit]; } set { base[_propRequestLimit] = value; } } [ConfigurationProperty("traceMode", DefaultValue = TraceDisplayMode.SortByTime)] public TraceDisplayMode TraceMode { get { return (TraceDisplayMode)base[_propMode]; } set { base[_propMode] = value; } } [ConfigurationProperty("writeToDiagnosticsTrace", DefaultValue = false)] public bool WriteToDiagnosticsTrace { get { return (bool)base[_writeToDiagnosticTrace]; } set { base[_writeToDiagnosticTrace] = 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
- TdsParameterSetter.cs
- Point3D.cs
- XmlDictionaryReader.cs
- LicenseProviderAttribute.cs
- DataGridBoundColumn.cs
- SmiContext.cs
- FloaterBaseParagraph.cs
- FrameDimension.cs
- DateTimeOffset.cs
- DataGridViewToolTip.cs
- TreeNodeCollectionEditor.cs
- BinaryObjectReader.cs
- QuaternionAnimationBase.cs
- GlyphRunDrawing.cs
- SchemaSetCompiler.cs
- NotSupportedException.cs
- FlowDocumentReaderAutomationPeer.cs
- RecommendedAsConfigurableAttribute.cs
- LambdaCompiler.Expressions.cs
- WebPartDisplayModeEventArgs.cs
- DefaultTraceListener.cs
- ReadOnlyTernaryTree.cs
- IODescriptionAttribute.cs
- XmlSchemaSimpleContentExtension.cs
- BitmapImage.cs
- XPathNodeHelper.cs
- WorkflowTimerService.cs
- SplineKeyFrames.cs
- Collection.cs
- KoreanCalendar.cs
- TypeSystemHelpers.cs
- X509Utils.cs
- AtlasWeb.Designer.cs
- XamlInt32CollectionSerializer.cs
- AssemblyAttributes.cs
- Point3DCollectionConverter.cs
- GC.cs
- ImageSource.cs
- ToolStripContentPanel.cs
- WindowPattern.cs
- ListBox.cs
- ContentFileHelper.cs
- HierarchicalDataBoundControlAdapter.cs
- WebPartDisplayModeEventArgs.cs
- CodeTypeDeclarationCollection.cs
- TcpStreams.cs
- StrokeNodeOperations2.cs
- WsiProfilesElementCollection.cs
- PatternMatcher.cs
- BaseDataBoundControl.cs
- Int32CollectionConverter.cs
- HttpResponseInternalWrapper.cs
- PtsPage.cs
- PtsPage.cs
- PublisherMembershipCondition.cs
- ResetableIterator.cs
- base64Transforms.cs
- ReturnValue.cs
- CodeLinePragma.cs
- Input.cs
- StrokeDescriptor.cs
- WmlControlAdapter.cs
- diagnosticsswitches.cs
- TraceLog.cs
- ObjectDataSourceEventArgs.cs
- SymbolType.cs
- SqlProfileProvider.cs
- CheckBox.cs
- EntityWrapper.cs
- RequestQueue.cs
- RSAPKCS1SignatureFormatter.cs
- VersionedStream.cs
- ProfileSettingsCollection.cs
- StrongNameIdentityPermission.cs
- Completion.cs
- BitmapSource.cs
- NamedPipeTransportElement.cs
- UserPersonalizationStateInfo.cs
- ImageIndexConverter.cs
- SecurityCriticalDataForSet.cs
- TypeNameConverter.cs
- FileStream.cs
- StringCollection.cs
- XmlStreamNodeWriter.cs
- SecuritySessionFilter.cs
- GeneralTransform3D.cs
- ListViewDataItem.cs
- Splitter.cs
- HashHelper.cs
- ConfigXmlComment.cs
- CompModSwitches.cs
- ConfigXmlWhitespace.cs
- TypeDescriptor.cs
- RightsManagementInformation.cs
- FormViewDeletedEventArgs.cs
- ServiceSecurityAuditElement.cs
- ExpandButtonVisibilityConverter.cs
- dataobject.cs
- TableChangeProcessor.cs
- XmlNamedNodeMap.cs