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
- ObjectRef.cs
- DataSourceXmlAttributeAttribute.cs
- ArrayTypeMismatchException.cs
- NegotiateStream.cs
- ConnectionsZone.cs
- CompiledRegexRunner.cs
- Model3D.cs
- CommonServiceBehaviorElement.cs
- EpmSourceTree.cs
- SafeWaitHandle.cs
- SoapSchemaExporter.cs
- StrokeDescriptor.cs
- KeyConstraint.cs
- DecimalAnimationBase.cs
- TdsParameterSetter.cs
- MethodBuilder.cs
- Convert.cs
- TTSEngineTypes.cs
- RangeValuePattern.cs
- MetadataHelper.cs
- HtmlLink.cs
- Trigger.cs
- CodeArrayIndexerExpression.cs
- DataGridViewDataErrorEventArgs.cs
- OleDbPropertySetGuid.cs
- ImageResources.Designer.cs
- HtmlSelect.cs
- DeclaredTypeValidator.cs
- ModifiableIteratorCollection.cs
- IpcServerChannel.cs
- ToolStripDropDownButton.cs
- KnownBoxes.cs
- WsdlBuildProvider.cs
- CapacityStreamGeometryContext.cs
- WindowsIdentity.cs
- ReadOnlyCollectionBase.cs
- InternalUserCancelledException.cs
- EntityClientCacheEntry.cs
- RecordManager.cs
- EdmSchemaError.cs
- DynamicUpdateCommand.cs
- MimeBasePart.cs
- XsdBuilder.cs
- SystemResources.cs
- URLAttribute.cs
- IdnElement.cs
- EditorPartChrome.cs
- PropertyGridView.cs
- FunctionOverloadResolver.cs
- MatrixTransform.cs
- RTLAwareMessageBox.cs
- FlowThrottle.cs
- RC2.cs
- _CommandStream.cs
- SamlAttribute.cs
- WsatServiceAddress.cs
- RightsManagementEncryptionTransform.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- OleDbDataAdapter.cs
- XPathMultyIterator.cs
- ByteRangeDownloader.cs
- StylusLogic.cs
- BoundField.cs
- EditorOptionAttribute.cs
- RSAProtectedConfigurationProvider.cs
- QueryOperationResponseOfT.cs
- DesignBindingValueUIHandler.cs
- Privilege.cs
- CodeDomSerializerException.cs
- DragDrop.cs
- basecomparevalidator.cs
- SoapObjectWriter.cs
- StatusBarItemAutomationPeer.cs
- CommandHelpers.cs
- DirectionalLight.cs
- SecurityTokenContainer.cs
- PathNode.cs
- LinqDataSourceView.cs
- XamlFxTrace.cs
- SendMailErrorEventArgs.cs
- EdgeProfileValidation.cs
- HttpServerVarsCollection.cs
- TemplateControlBuildProvider.cs
- RootBrowserWindow.cs
- RewritingProcessor.cs
- WindowsGraphics2.cs
- TraceEventCache.cs
- XmlChildEnumerator.cs
- HTMLTagNameToTypeMapper.cs
- SecurityCriticalDataForSet.cs
- PropertyItemInternal.cs
- TableLayoutPanelResizeGlyph.cs
- RegionInfo.cs
- XmlSchemaCollection.cs
- NativeMethodsOther.cs
- StringReader.cs
- DataGridViewColumnConverter.cs
- ColumnMapProcessor.cs
- ListItemParagraph.cs
- PrimitiveType.cs