Code:
/ FX-1434 / FX-1434 / 1.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
- EditorPartDesigner.cs
- TabControl.cs
- entitydatasourceentitysetnameconverter.cs
- HttpListenerException.cs
- CustomCredentialPolicy.cs
- GZipStream.cs
- ArcSegment.cs
- SqlServer2KCompatibilityAnnotation.cs
- BindingsCollection.cs
- OlePropertyStructs.cs
- SchemaMapping.cs
- QuaternionAnimationBase.cs
- CellTreeNode.cs
- InstancePersistenceException.cs
- Color.cs
- DataStreams.cs
- EDesignUtil.cs
- WebPartChrome.cs
- ErrorProvider.cs
- ScrollProperties.cs
- BaseDataList.cs
- ToolTipService.cs
- NamespaceQuery.cs
- DesigntimeLicenseContext.cs
- AffineTransform3D.cs
- UTF8Encoding.cs
- ListItemConverter.cs
- SmiEventStream.cs
- DuplicateWaitObjectException.cs
- DataTablePropertyDescriptor.cs
- ProtectedConfiguration.cs
- TypeSchema.cs
- UIInitializationException.cs
- LocalizeDesigner.cs
- ClientClassGenerator.cs
- Classification.cs
- InputLanguageProfileNotifySink.cs
- DocumentXPathNavigator.cs
- TableStyle.cs
- FastEncoderWindow.cs
- ConfigurationSchemaErrors.cs
- XmlSchemaSubstitutionGroup.cs
- ColumnWidthChangingEvent.cs
- DrawingImage.cs
- CheckoutException.cs
- ResXResourceReader.cs
- ToolStripGripRenderEventArgs.cs
- ComplexLine.cs
- QuadraticEase.cs
- XmlFormatWriterGenerator.cs
- MailMessageEventArgs.cs
- ValueHandle.cs
- Roles.cs
- LoaderAllocator.cs
- OneOf.cs
- BaseAppDomainProtocolHandler.cs
- ManifestResourceInfo.cs
- FigureHelper.cs
- Simplifier.cs
- UserPreferenceChangingEventArgs.cs
- TraceLevelStore.cs
- DataViewListener.cs
- XmlBinaryWriter.cs
- PropertyBuilder.cs
- AuthorizationSection.cs
- WebSysDescriptionAttribute.cs
- SimpleTextLine.cs
- QueryContinueDragEvent.cs
- ReaderWriterLockWrapper.cs
- PictureBox.cs
- MsmqBindingFilter.cs
- SizeAnimation.cs
- NegationPusher.cs
- Stackframe.cs
- WebRequest.cs
- SoapAttributeOverrides.cs
- Metafile.cs
- SubstitutionResponseElement.cs
- CodeThrowExceptionStatement.cs
- CustomAttributeFormatException.cs
- GenericWebPart.cs
- _AutoWebProxyScriptEngine.cs
- odbcmetadatacollectionnames.cs
- TemplateParser.cs
- DataBoundControlAdapter.cs
- TransactionsSectionGroup.cs
- SchemaConstraints.cs
- SafeNativeMethods.cs
- SMSvcHost.cs
- ToolstripProfessionalRenderer.cs
- ScaleTransform.cs
- SqlDataSourceConfigureFilterForm.cs
- X509SubjectKeyIdentifierClause.cs
- Trustee.cs
- UserMapPath.cs
- returneventsaver.cs
- CapabilitiesState.cs
- Facet.cs
- DataRecord.cs
- InfiniteTimeSpanConverter.cs