Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / Xslt / XsltSettings.cs / 1305376 / 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. // //[....] //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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RegexCapture.cs
- _TransmitFileOverlappedAsyncResult.cs
- EncryptedKey.cs
- XmlElement.cs
- FormViewPageEventArgs.cs
- OletxVolatileEnlistment.cs
- SafeViewOfFileHandle.cs
- BindingValueChangedEventArgs.cs
- RequestNavigateEventArgs.cs
- WriterOutput.cs
- XmlQueryType.cs
- InvokeGenerator.cs
- SoapFaultCodes.cs
- WebPartActionVerb.cs
- MemberRelationshipService.cs
- PackageProperties.cs
- UriSectionReader.cs
- XmlArrayAttribute.cs
- PeerApplication.cs
- XmlSignificantWhitespace.cs
- X509PeerCertificateElement.cs
- ScriptResourceHandler.cs
- SQLResource.cs
- OleDbParameter.cs
- XmlILTrace.cs
- Task.cs
- KeyConstraint.cs
- TextServicesContext.cs
- HtmlMeta.cs
- ClientSettingsStore.cs
- Int32Storage.cs
- EntitySqlQueryCacheKey.cs
- ServicePointManager.cs
- DockingAttribute.cs
- MultipleViewPatternIdentifiers.cs
- DataGridItemEventArgs.cs
- AuthenticationSection.cs
- UTF32Encoding.cs
- RepeaterItem.cs
- VariantWrapper.cs
- LogFlushAsyncResult.cs
- WeakReference.cs
- DesignerSerializerAttribute.cs
- InstancePersistence.cs
- ValuePattern.cs
- FigureHelper.cs
- BitConverter.cs
- SQLSingleStorage.cs
- ObjectDataSourceStatusEventArgs.cs
- HelloMessageCD1.cs
- AttachmentCollection.cs
- QueryStringHandler.cs
- FormsAuthenticationModule.cs
- TableItemStyle.cs
- CultureInfo.cs
- SafeNativeMethods.cs
- PnrpPeerResolver.cs
- StickyNote.cs
- DefaultValidator.cs
- ToolStripPanelCell.cs
- WebConfigurationHostFileChange.cs
- TypeTypeConverter.cs
- DockAndAnchorLayout.cs
- ContainerFilterService.cs
- DataGridViewRowCollection.cs
- ExtenderHelpers.cs
- SafeCoTaskMem.cs
- DataGridItemCollection.cs
- SqlDataSourceEnumerator.cs
- Facet.cs
- LineSegment.cs
- DataGridViewCellEventArgs.cs
- MasterPage.cs
- OutKeywords.cs
- HttpCapabilitiesEvaluator.cs
- SmiRequestExecutor.cs
- FileDialogPermission.cs
- WindowsSpinner.cs
- QilScopedVisitor.cs
- CodePageEncoding.cs
- Binding.cs
- XpsS0ValidatingLoader.cs
- GradientStopCollection.cs
- hebrewshape.cs
- SchemaLookupTable.cs
- ArithmeticException.cs
- Serializer.cs
- FixedSOMTable.cs
- RadioButton.cs
- ClipboardData.cs
- XmlCustomFormatter.cs
- ReaderWriterLock.cs
- CodeBlockBuilder.cs
- ListSourceHelper.cs
- TraceUtils.cs
- ScriptDescriptor.cs
- ContextBase.cs
- ISCIIEncoding.cs
- RichTextBoxDesigner.cs
- SetStateDesigner.cs