Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Xml / System / Xml / Xslt / XsltSettings.cs / 1 / 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
- RichTextBoxConstants.cs
- WeakHashtable.cs
- User.cs
- Tablet.cs
- ParameterDataSourceExpression.cs
- Opcode.cs
- WindowsListViewGroupHelper.cs
- ManagementObjectSearcher.cs
- RightsManagementManager.cs
- ApplyImportsAction.cs
- ToolStripControlHost.cs
- XmlSchemaElement.cs
- XPathScanner.cs
- Quad.cs
- DetailsViewActionList.cs
- CharacterBufferReference.cs
- ManagementClass.cs
- BitmapPalettes.cs
- DataServiceRequest.cs
- FastPropertyAccessor.cs
- ToolStripLabel.cs
- CommentEmitter.cs
- CfgArc.cs
- DocumentOrderComparer.cs
- BackgroundWorker.cs
- ConvertEvent.cs
- FontCollection.cs
- ImpersonateTokenRef.cs
- ProcessInfo.cs
- ThumbButtonInfoCollection.cs
- Token.cs
- PatternMatcher.cs
- PermissionAttributes.cs
- DataPagerField.cs
- QueryCacheManager.cs
- Range.cs
- XamlTypeMapper.cs
- UnknownBitmapDecoder.cs
- DataBinder.cs
- QuaternionValueSerializer.cs
- BookmarkCallbackWrapper.cs
- OptimalBreakSession.cs
- ExclusiveHandle.cs
- Win32SafeHandles.cs
- SqlDataReader.cs
- CompilerWrapper.cs
- FtpRequestCacheValidator.cs
- DbParameterCollection.cs
- DataGridViewCellLinkedList.cs
- DataServiceHostWrapper.cs
- SimpleHandlerBuildProvider.cs
- XmlNamespaceMappingCollection.cs
- IFlowDocumentViewer.cs
- AssemblyFilter.cs
- IndicShape.cs
- ClientCredentialsSecurityTokenManager.cs
- TraceContextRecord.cs
- TriggerAction.cs
- DesignerAttribute.cs
- TextMessageEncodingElement.cs
- InvalidContentTypeException.cs
- PathSegment.cs
- WebReference.cs
- DataGridViewColumnStateChangedEventArgs.cs
- StaticContext.cs
- XmlQueryCardinality.cs
- HTMLTextWriter.cs
- nulltextcontainer.cs
- Point.cs
- VirtualDirectoryMapping.cs
- ResourcesChangeInfo.cs
- DesignerTransaction.cs
- ConfigurationStrings.cs
- ScrollItemPatternIdentifiers.cs
- ContentType.cs
- ArgumentNullException.cs
- VectorValueSerializer.cs
- DecoratedNameAttribute.cs
- SelectionItemProviderWrapper.cs
- DataListAutoFormat.cs
- SystemTcpConnection.cs
- LZCodec.cs
- JpegBitmapDecoder.cs
- BaseProcessor.cs
- DataDocumentXPathNavigator.cs
- FixedDSBuilder.cs
- ObjectParameter.cs
- TargetParameterCountException.cs
- WorkflowPersistenceService.cs
- XmlSignificantWhitespace.cs
- GrammarBuilderWildcard.cs
- DataGridViewUtilities.cs
- Propagator.cs
- DrawListViewItemEventArgs.cs
- ObjectSecurityT.cs
- PolicyException.cs
- AddInStore.cs
- NotifyInputEventArgs.cs
- QueuePathDialog.cs
- BatchWriter.cs