Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / diagnosticsswitches.cs / 1 / diagnosticsswitches.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml { using System.Diagnostics; #if DEBUG public static class DiagnosticsSwitches { #else internal static class DiagnosticsSwitches { #endif private static BooleanSwitch xmlSchemaContentModel; private static TraceSwitch xmlSchema; private static BooleanSwitch keepTempFiles; private static BooleanSwitch pregenEventLog; private static TraceSwitch xmlSerialization; private static TraceSwitch xslTypeInference; public static BooleanSwitch XmlSchemaContentModel { get { if (xmlSchemaContentModel == null) { xmlSchemaContentModel = new BooleanSwitch("XmlSchemaContentModel", "Enable tracing for the XmlSchema content model."); } return xmlSchemaContentModel; } } public static TraceSwitch XmlSchema { get { if (xmlSchema == null) { xmlSchema = new TraceSwitch("XmlSchema", "Enable tracing for the XmlSchema class."); } return xmlSchema; } } public static BooleanSwitch KeepTempFiles { get { if (keepTempFiles == null) { keepTempFiles = new BooleanSwitch("XmlSerialization.Compilation", "Keep XmlSerialization generated (temp) files."); } return keepTempFiles; } } public static BooleanSwitch PregenEventLog { get { if (pregenEventLog == null) { pregenEventLog = new BooleanSwitch("XmlSerialization.PregenEventLog", "Log failures while loading pre-generated XmlSerialization assembly."); } return pregenEventLog; } } public static TraceSwitch XmlSerialization { get { if (xmlSerialization == null) { xmlSerialization = new TraceSwitch("XmlSerialization", "Enable tracing for the System.Xml.Serialization component."); } return xmlSerialization; } } public static TraceSwitch XslTypeInference { get { if (xslTypeInference == null) { xslTypeInference = new TraceSwitch("XslTypeInference", "Enable tracing for the XSLT type inference algorithm."); } return xslTypeInference; } } } } // 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
- StructureChangedEventArgs.cs
- ActionFrame.cs
- FactoryMaker.cs
- SystemUnicastIPAddressInformation.cs
- FixedSOMPageElement.cs
- HtmlHistory.cs
- SchemaElementLookUpTable.cs
- CellQuery.cs
- AutoGeneratedFieldProperties.cs
- SingleBodyParameterMessageFormatter.cs
- BrowserCapabilitiesFactory.cs
- SqlFactory.cs
- BitmapEffectDrawing.cs
- NavigationProperty.cs
- PropertyInfoSet.cs
- CompositeControl.cs
- DesignTimeTemplateParser.cs
- FrameworkTemplate.cs
- StringCollectionMarkupSerializer.cs
- Int32AnimationUsingKeyFrames.cs
- Point3DValueSerializer.cs
- CodeCompiler.cs
- PointConverter.cs
- DataGridLinkButton.cs
- CheckBoxList.cs
- DataGridViewCellEventArgs.cs
- XamlSerializerUtil.cs
- AppendHelper.cs
- ChineseLunisolarCalendar.cs
- FileStream.cs
- HashSetEqualityComparer.cs
- XmlSchemaComplexContentRestriction.cs
- LayoutEngine.cs
- MsmqUri.cs
- RepeatButton.cs
- SurrogateEncoder.cs
- GeneralTransform3DGroup.cs
- ListViewItem.cs
- _LocalDataStoreMgr.cs
- MessageHeaderT.cs
- ObservableCollection.cs
- CatalogZoneBase.cs
- UriSectionReader.cs
- HostedImpersonationContext.cs
- MouseButtonEventArgs.cs
- XamlSerializerUtil.cs
- ApplicationException.cs
- TeredoHelper.cs
- ConfigurationCollectionAttribute.cs
- ColumnPropertiesGroup.cs
- SqlReorderer.cs
- EpmSourcePathSegment.cs
- XmlSchemaSimpleContentRestriction.cs
- FilteredReadOnlyMetadataCollection.cs
- EventRouteFactory.cs
- Configuration.cs
- ImageFormatConverter.cs
- ElementAction.cs
- IsolatedStorageFileStream.cs
- Overlapped.cs
- XmlSigningNodeWriter.cs
- unitconverter.cs
- SegmentInfo.cs
- documentsequencetextpointer.cs
- DefaultHttpHandler.cs
- TextMarkerSource.cs
- ECDiffieHellmanCngPublicKey.cs
- ListViewUpdatedEventArgs.cs
- DoubleCollection.cs
- CheckBoxDesigner.cs
- ContentFilePart.cs
- ToolStripButton.cs
- ToolstripProfessionalRenderer.cs
- NativeActivityMetadata.cs
- RelationshipDetailsRow.cs
- RenderCapability.cs
- SqlFunctionAttribute.cs
- jithelpers.cs
- sqlmetadatafactory.cs
- BezierSegment.cs
- KnownTypesHelper.cs
- MethodCallExpression.cs
- COM2ColorConverter.cs
- MulticastNotSupportedException.cs
- WebScriptMetadataFormatter.cs
- WebPartDisplayMode.cs
- SimpleRecyclingCache.cs
- DynamicResourceExtension.cs
- Vector3DCollectionConverter.cs
- ParameterModifier.cs
- DataBoundControlDesigner.cs
- DashStyle.cs
- Update.cs
- CreateParams.cs
- NumberFunctions.cs
- Identifier.cs
- MethodImplAttribute.cs
- NativeWindow.cs
- BidOverLoads.cs
- IdentityModelDictionary.cs