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
- CodeDirectoryCompiler.cs
- SqlAliasesReferenced.cs
- WebEventCodes.cs
- TimerElapsedEvenArgs.cs
- CompensationDesigner.cs
- MulticastOption.cs
- ToolboxControl.cs
- DataRecordInfo.cs
- FloatAverageAggregationOperator.cs
- SignedInfo.cs
- TrackingMemoryStream.cs
- BaseCAMarshaler.cs
- MemoryMappedViewAccessor.cs
- ConfigViewGenerator.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- SafeLibraryHandle.cs
- IntSecurity.cs
- DataPagerCommandEventArgs.cs
- HttpTransportManager.cs
- ListDataBindEventArgs.cs
- XpsStructure.cs
- BitHelper.cs
- _Rfc2616CacheValidators.cs
- SecurityMessageProperty.cs
- WebBrowserContainer.cs
- FindCriteriaElement.cs
- ConfigurationManagerInternal.cs
- ForeignConstraint.cs
- TextEditorLists.cs
- ChooseAction.cs
- MetaModel.cs
- EntityContainerRelationshipSetEnd.cs
- AttachedAnnotation.cs
- DateTimeOffsetAdapter.cs
- BatchServiceHost.cs
- HybridDictionary.cs
- RequestBringIntoViewEventArgs.cs
- BindingList.cs
- SimpleBitVector32.cs
- ClientOperation.cs
- SafeFileHandle.cs
- XmlDocumentFragment.cs
- ParseElementCollection.cs
- MultiPropertyDescriptorGridEntry.cs
- List.cs
- FormatConvertedBitmap.cs
- WebSysDisplayNameAttribute.cs
- ScriptControl.cs
- Int64KeyFrameCollection.cs
- VisualTreeUtils.cs
- ConnectionOrientedTransportManager.cs
- COM2IDispatchConverter.cs
- PropertyItemInternal.cs
- DetailsViewCommandEventArgs.cs
- SettingsPropertyIsReadOnlyException.cs
- LinqDataSourceContextData.cs
- HeaderUtility.cs
- WindowsFont.cs
- CollectionType.cs
- DataGrid.cs
- HtmlControlPersistable.cs
- SystemException.cs
- Compress.cs
- AncillaryOps.cs
- DropShadowEffect.cs
- PeerNameRecordCollection.cs
- StringResourceManager.cs
- XmlSchemaSimpleTypeList.cs
- FileLevelControlBuilderAttribute.cs
- BooleanToVisibilityConverter.cs
- TimeSpanValidator.cs
- XsltLoader.cs
- CriticalHandle.cs
- WindowsAuthenticationModule.cs
- XmlSchemaIdentityConstraint.cs
- TextClipboardData.cs
- SAPICategories.cs
- AutoResizedEvent.cs
- ProviderUtil.cs
- messageonlyhwndwrapper.cs
- AppDomainAttributes.cs
- MessageQueuePermissionEntryCollection.cs
- StringReader.cs
- ClientFormsAuthenticationCredentials.cs
- FormClosingEvent.cs
- XmlSchemaSimpleContentRestriction.cs
- WebPartMenuStyle.cs
- Point3DCollection.cs
- NameValueFileSectionHandler.cs
- WorkflowInspectionServices.cs
- FormCollection.cs
- UpdateCommand.cs
- WebPartManager.cs
- CompModSwitches.cs
- TypeToken.cs
- DataSourceView.cs
- BaseDataListPage.cs
- StandardCommands.cs
- DataTableCollection.cs
- ColumnWidthChangingEvent.cs