Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Xml / System / Xml / Xslt / XsltSettings.cs / 5 / 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
- RadioButton.cs
- SerialStream.cs
- SymbolMethod.cs
- InternalBase.cs
- Converter.cs
- CodeMemberProperty.cs
- PrimitiveType.cs
- ISO2022Encoding.cs
- ParserStreamGeometryContext.cs
- ConfigXmlComment.cs
- OleDbPermission.cs
- ScrollViewer.cs
- UIElement3DAutomationPeer.cs
- FilterQuery.cs
- KeyEvent.cs
- BindingCompleteEventArgs.cs
- CodeTypeParameterCollection.cs
- MessageQueueKey.cs
- SqlRemoveConstantOrderBy.cs
- SmiMetaDataProperty.cs
- CodeGen.cs
- diagnosticsswitches.cs
- MsmqEncryptionAlgorithm.cs
- MyContact.cs
- ParseElement.cs
- AttachedPropertyBrowsableWhenAttributePresentAttribute.cs
- XmlWriterTraceListener.cs
- Module.cs
- SymbolTable.cs
- Convert.cs
- IncrementalHitTester.cs
- MediaPlayer.cs
- CacheForPrimitiveTypes.cs
- Color.cs
- GenericsInstances.cs
- VectorCollectionConverter.cs
- ObjectPersistData.cs
- RelationshipEntry.cs
- DbConnectionPoolGroupProviderInfo.cs
- FileDialog.cs
- Timer.cs
- WebPartConnectionsConnectVerb.cs
- DataSourceIDConverter.cs
- UserControl.cs
- PanningMessageFilter.cs
- AutomationElementCollection.cs
- SequenceNumber.cs
- ObjectReferenceStack.cs
- SelectionPatternIdentifiers.cs
- ParameterModifier.cs
- CalendarAutoFormat.cs
- regiisutil.cs
- WorkflowService.cs
- TextParaLineResult.cs
- EntityDataSourceValidationException.cs
- GraphicsPath.cs
- HandledEventArgs.cs
- QueueNameHelper.cs
- PasswordRecovery.cs
- ProcessManager.cs
- TreeNodeSelectionProcessor.cs
- Validator.cs
- ToolStripControlHost.cs
- EndEvent.cs
- FlowDocumentScrollViewer.cs
- ImmComposition.cs
- FixedDocumentPaginator.cs
- SqlProviderManifest.cs
- MarkupExtensionReturnTypeAttribute.cs
- QueryPageSettingsEventArgs.cs
- CodeIdentifier.cs
- Italic.cs
- QueryAsyncResult.cs
- DocumentPageViewAutomationPeer.cs
- EpmContentSerializer.cs
- Rect3DConverter.cs
- SqlDataSourceCache.cs
- filewebresponse.cs
- xmlsaver.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- UTF8Encoding.cs
- Geometry3D.cs
- UrlParameterReader.cs
- Graph.cs
- ListViewItemSelectionChangedEvent.cs
- Vector3DValueSerializer.cs
- ListViewSelectEventArgs.cs
- SoapReflectionImporter.cs
- BindingNavigator.cs
- ContextItemManager.cs
- ConversionContext.cs
- ADConnectionHelper.cs
- FileIOPermission.cs
- XsltSettings.cs
- DataGridViewColumnStateChangedEventArgs.cs
- Logging.cs
- OutputCacheProfile.cs
- RightsManagementEncryptedStream.cs
- BinaryFormatterSinks.cs
- Native.cs