Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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; private static BooleanSwitch nonRecursiveTypeLoading; 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; } } public static BooleanSwitch NonRecursiveTypeLoading { get { if (nonRecursiveTypeLoading == null) { nonRecursiveTypeLoading = new BooleanSwitch("XmlSerialization.NonRecursiveTypeLoading", "Turn on non-recursive algorithm generating XmlMappings for CLR types."); } return nonRecursiveTypeLoading; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// 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; private static BooleanSwitch nonRecursiveTypeLoading; 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; } } public static BooleanSwitch NonRecursiveTypeLoading { get { if (nonRecursiveTypeLoading == null) { nonRecursiveTypeLoading = new BooleanSwitch("XmlSerialization.NonRecursiveTypeLoading", "Turn on non-recursive algorithm generating XmlMappings for CLR types."); } return nonRecursiveTypeLoading; } } } } // 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
- ResolvedKeyFrameEntry.cs
- PerformanceCounterLib.cs
- ImplicitInputBrush.cs
- HttpConfigurationContext.cs
- SqlTransaction.cs
- UnsafePeerToPeerMethods.cs
- ListenerElementsCollection.cs
- ToolStripProgressBar.cs
- XmlSchemaImporter.cs
- UniqueContractNameValidationBehavior.cs
- BinaryFormatter.cs
- SQLDouble.cs
- XXXOnTypeBuilderInstantiation.cs
- SpeechUI.cs
- CqlParserHelpers.cs
- XmlSchemaObjectTable.cs
- NamespaceList.cs
- OracleCommandSet.cs
- PropertyDescriptorGridEntry.cs
- DefaultTextStoreTextComposition.cs
- TraceData.cs
- XmlDownloadManager.cs
- TransformGroup.cs
- DragDeltaEventArgs.cs
- Tool.cs
- QualifiedCellIdBoolean.cs
- ToolZone.cs
- XsltException.cs
- InfoCardSymmetricCrypto.cs
- DataGridHelper.cs
- EncodingStreamWrapper.cs
- StringAnimationBase.cs
- StringInfo.cs
- MaskedTextProvider.cs
- DbConnectionPoolOptions.cs
- RegisteredExpandoAttribute.cs
- XsdValidatingReader.cs
- Point.cs
- XPathAncestorIterator.cs
- GradientStopCollection.cs
- SQLRoleProvider.cs
- BasicExpandProvider.cs
- BezierSegment.cs
- RichTextBox.cs
- QueryExpr.cs
- FormatterServices.cs
- ClientSession.cs
- BufferBuilder.cs
- Part.cs
- GeneralTransform.cs
- ListenerConnectionDemuxer.cs
- UniqueConstraint.cs
- ToolStripPanelRenderEventArgs.cs
- StreamSecurityUpgradeAcceptorBase.cs
- ResourcePermissionBase.cs
- HttpListener.cs
- NetCodeGroup.cs
- ToolStripRenderer.cs
- StrongNameIdentityPermission.cs
- Identifier.cs
- RenderDataDrawingContext.cs
- DataGridViewColumnEventArgs.cs
- SqlDataReaderSmi.cs
- DirectoryObjectSecurity.cs
- ClonableStack.cs
- XmlSiteMapProvider.cs
- DragEventArgs.cs
- LineServicesCallbacks.cs
- TableChangeProcessor.cs
- WorkflowPageSetupDialog.cs
- AutoScrollExpandMessageFilter.cs
- EFColumnProvider.cs
- XmlCustomFormatter.cs
- XmlSchemaObject.cs
- UnhandledExceptionEventArgs.cs
- BitmapEffectDrawing.cs
- XmlDataImplementation.cs
- TypeBuilderInstantiation.cs
- IIS7UserPrincipal.cs
- ResourceProperty.cs
- ProxySimple.cs
- RemotingAttributes.cs
- InputScopeManager.cs
- Axis.cs
- ListBoxAutomationPeer.cs
- AssociationEndMember.cs
- DesignerLoader.cs
- PipelineModuleStepContainer.cs
- TextContainerChangedEventArgs.cs
- DataControlButton.cs
- MetadataPropertyCollection.cs
- FlowDocumentScrollViewer.cs
- DateTimeConverter2.cs
- PolyLineSegment.cs
- PathHelper.cs
- UrlMappingCollection.cs
- DataBindingCollection.cs
- ResXResourceReader.cs
- Button.cs
- ListBoxChrome.cs