Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / Xslt / XsltSettings.cs / 2 / XsltSettings.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //http://webdata/xml/specs/XslCompiledTransform.xml //----------------------------------------------------------------------------- using System.CodeDom.Compiler; namespace System.Xml.Xsl { public sealed class XsltSettings { private bool enableDocumentFunction; private bool enableScript; private bool checkOnly; private bool includeDebugInformation; private int warningLevel = -1; // -1 means not set private bool treatWarningsAsErrors; private TempFileCollection tempFiles; public XsltSettings() { } public XsltSettings(bool enableDocumentFunction, bool enableScript) { this.enableDocumentFunction = enableDocumentFunction; this.enableScript = enableScript; } public static XsltSettings Default { get { return new XsltSettings(false, false); } } public static XsltSettings TrustedXslt { get { return new XsltSettings(true, true); } } public bool EnableDocumentFunction { get { return enableDocumentFunction; } set { enableDocumentFunction = value; } } public bool EnableScript { get { return enableScript; } set { enableScript = value; } } internal bool CheckOnly { get { return checkOnly; } set { checkOnly = value; } } internal bool IncludeDebugInformation { get { return includeDebugInformation; } set { includeDebugInformation = value; } } internal int WarningLevel { get { return warningLevel; } set { warningLevel = value; } } internal bool TreatWarningsAsErrors { get { return treatWarningsAsErrors; } set { treatWarningsAsErrors = value; } } internal TempFileCollection TempFiles { get { return tempFiles; } set { tempFiles = value; } } } } // 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
- ObjectHandle.cs
- SqlFacetAttribute.cs
- WebPartMenuStyle.cs
- ProgressiveCrcCalculatingStream.cs
- HttpWebRequest.cs
- SHA512Managed.cs
- SettingsProperty.cs
- NonClientArea.cs
- ThreadStateException.cs
- TextAdaptor.cs
- ToolStripHighContrastRenderer.cs
- ToolstripProfessionalRenderer.cs
- EllipseGeometry.cs
- OracleTransaction.cs
- HtmlAnchor.cs
- AccessDataSourceView.cs
- DetailsViewRow.cs
- XmlSerializationReader.cs
- BuildDependencySet.cs
- DynamicQueryableWrapper.cs
- SparseMemoryStream.cs
- TargetParameterCountException.cs
- SQLMembershipProvider.cs
- WindowPatternIdentifiers.cs
- DataTableReader.cs
- Quaternion.cs
- Logging.cs
- Html32TextWriter.cs
- SpoolingTask.cs
- ManifestResourceInfo.cs
- ItemList.cs
- DockPanel.cs
- AspNetHostingPermission.cs
- PopOutPanel.cs
- SrgsGrammar.cs
- NavigationCommands.cs
- UIPermission.cs
- SchemaImporterExtension.cs
- RegistryPermission.cs
- SrgsRulesCollection.cs
- MouseDevice.cs
- FixUp.cs
- NonceToken.cs
- ArraySegment.cs
- BaseCollection.cs
- PropertyGeneratedEventArgs.cs
- GridViewUpdateEventArgs.cs
- AffineTransform3D.cs
- SafeCryptoHandles.cs
- SafeFileHandle.cs
- XmlExpressionDumper.cs
- XmlWellformedWriter.cs
- RenderData.cs
- PathFigureCollection.cs
- TextSelectionHelper.cs
- DayRenderEvent.cs
- AnimationException.cs
- CatalogPart.cs
- TypeDependencyAttribute.cs
- PolyLineSegment.cs
- CursorInteropHelper.cs
- BaseResourcesBuildProvider.cs
- _Semaphore.cs
- TargetInvocationException.cs
- DataSourceView.cs
- ClientRoleProvider.cs
- PerCallInstanceContextProvider.cs
- CqlLexer.cs
- OdbcException.cs
- DispatcherExceptionEventArgs.cs
- MonikerProxyAttribute.cs
- ScriptManagerProxy.cs
- ArgumentsParser.cs
- Pen.cs
- ActivationServices.cs
- DragStartedEventArgs.cs
- AnnouncementClient.cs
- DataTableMapping.cs
- HttpCapabilitiesBase.cs
- Soap.cs
- SafeFileMappingHandle.cs
- AstNode.cs
- Image.cs
- EntityContainerAssociationSet.cs
- PropertyGrid.cs
- GPPOINT.cs
- Utils.cs
- dbenumerator.cs
- FixedPageStructure.cs
- PolyBezierSegmentFigureLogic.cs
- GPRECT.cs
- BitStack.cs
- FileNotFoundException.cs
- GatewayDefinition.cs
- TargetConverter.cs
- ByValueEqualityComparer.cs
- ToolStripItemEventArgs.cs
- OLEDB_Enum.cs
- URLMembershipCondition.cs
- ProcessModelInfo.cs