Code:
/ DotNET / DotNET / 8.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
- TransactionScopeDesigner.cs
- BitmapFrameDecode.cs
- TypographyProperties.cs
- DSASignatureDeformatter.cs
- ListBindableAttribute.cs
- OracleConnectionStringBuilder.cs
- CapabilitiesRule.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- DataBindingCollectionConverter.cs
- ViewManager.cs
- RequestCache.cs
- SafeRegistryKey.cs
- PropertyGridEditorPart.cs
- ToolStripContentPanelRenderEventArgs.cs
- DependencyObjectType.cs
- ScriptServiceAttribute.cs
- CornerRadius.cs
- SHA384Cng.cs
- XPathCompileException.cs
- EncryptedPackageFilter.cs
- DependencySource.cs
- OdbcDataAdapter.cs
- ExpressionBuilderContext.cs
- XmlSchemaObjectTable.cs
- ExecutedRoutedEventArgs.cs
- SQLDateTimeStorage.cs
- LineGeometry.cs
- DiagnosticTraceSchemas.cs
- PassportAuthenticationModule.cs
- DataGridSortCommandEventArgs.cs
- StateValidator.cs
- QueryStack.cs
- ControlAdapter.cs
- PointF.cs
- TriggerBase.cs
- SchemaNotation.cs
- SqlDataAdapter.cs
- InputGestureCollection.cs
- HttpListenerElement.cs
- TableProviderWrapper.cs
- GraphicsPathIterator.cs
- StringArrayConverter.cs
- AttributeData.cs
- DocComment.cs
- HitTestWithPointDrawingContextWalker.cs
- DesignerLoader.cs
- TriggerBase.cs
- VolatileEnlistmentState.cs
- EventMap.cs
- AppSecurityManager.cs
- DocumentXmlWriter.cs
- TypeBuilder.cs
- PageParserFilter.cs
- WorkerRequest.cs
- EventRoute.cs
- SystemIcmpV4Statistics.cs
- NumericUpDownAcceleration.cs
- TrackingProfile.cs
- Activity.cs
- GridViewUpdatedEventArgs.cs
- NetworkInformationPermission.cs
- BuildManager.cs
- CallbackBehaviorAttribute.cs
- _SpnDictionary.cs
- HttpConfigurationContext.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- Rotation3D.cs
- JoinElimination.cs
- TableCell.cs
- BroadcastEventHelper.cs
- TextEditor.cs
- BitmapScalingModeValidation.cs
- CommandField.cs
- connectionpool.cs
- VariableExpressionConverter.cs
- Bidi.cs
- StateFinalizationActivity.cs
- XmlCharType.cs
- BinaryEditor.cs
- RegexGroupCollection.cs
- CommonGetThemePartSize.cs
- MSHTMLHost.cs
- ClosureBinding.cs
- SHA384Managed.cs
- RegisteredScript.cs
- ListMarkerLine.cs
- TreeNodeCollection.cs
- ControlPropertyNameConverter.cs
- Options.cs
- LiteralDesigner.cs
- Panel.cs
- propertyentry.cs
- MLangCodePageEncoding.cs
- InternalBufferOverflowException.cs
- FixedSOMSemanticBox.cs
- TreeNodeEventArgs.cs
- ProfileBuildProvider.cs
- _TransmitFileOverlappedAsyncResult.cs
- NamespaceMapping.cs
- Html32TextWriter.cs