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
- ByteViewer.cs
- SqlCharStream.cs
- webbrowsersite.cs
- TargetInvocationException.cs
- FixedSOMElement.cs
- DbSource.cs
- DoubleCollectionConverter.cs
- SharedStream.cs
- LinkArea.cs
- VisualStyleRenderer.cs
- UriParserTemplates.cs
- MouseWheelEventArgs.cs
- AsmxEndpointPickerExtension.cs
- DropShadowEffect.cs
- GridViewColumn.cs
- Table.cs
- ConvertersCollection.cs
- DataGridPageChangedEventArgs.cs
- SettingsBase.cs
- QueryContinueDragEventArgs.cs
- InnerItemCollectionView.cs
- ZipIOCentralDirectoryFileHeader.cs
- UnsafeNativeMethods.cs
- ErrorFormatterPage.cs
- SemanticResolver.cs
- StateManagedCollection.cs
- ReadWriteSpinLock.cs
- InfoCardRSACryptoProvider.cs
- ContentType.cs
- WorkflowInstanceAbortedRecord.cs
- IteratorDescriptor.cs
- LinqDataSourceInsertEventArgs.cs
- XmlBindingWorker.cs
- BamlMapTable.cs
- NumberFormatInfo.cs
- SingleAnimation.cs
- ScaleTransform3D.cs
- SocketPermission.cs
- ApplyImportsAction.cs
- RegionData.cs
- OdbcConnectionOpen.cs
- LoginDesigner.cs
- BitmapEffectGroup.cs
- FormViewCommandEventArgs.cs
- OracleParameterCollection.cs
- RectValueSerializer.cs
- TextBox.cs
- ExpressionBinding.cs
- CompressStream.cs
- SiteMembershipCondition.cs
- EdmSchemaError.cs
- SimpleParser.cs
- BuildManager.cs
- SqlBooleanMismatchVisitor.cs
- DesignTimeSiteMapProvider.cs
- XmlSchemaChoice.cs
- SqlDataSourceCache.cs
- DetailsViewDeleteEventArgs.cs
- SerialPinChanges.cs
- SoapTypeAttribute.cs
- HyperLinkColumn.cs
- WindowPatternIdentifiers.cs
- AttributeQuery.cs
- LogWriteRestartAreaAsyncResult.cs
- CryptoProvider.cs
- SecurityDescriptor.cs
- RemoteWebConfigurationHostServer.cs
- RequestQueue.cs
- HttpFileCollection.cs
- ScriptResourceHandler.cs
- AutomationPropertyInfo.cs
- SystemIPv4InterfaceProperties.cs
- FixedLineResult.cs
- ProfilePropertyMetadata.cs
- SmiMetaDataProperty.cs
- ValueType.cs
- SqlCacheDependencyDatabaseCollection.cs
- Error.cs
- GroupLabel.cs
- SharedStream.cs
- XmlEncoding.cs
- XamlFilter.cs
- BuiltInPermissionSets.cs
- LineUtil.cs
- ArgumentOutOfRangeException.cs
- QilInvokeLateBound.cs
- DebugHandleTracker.cs
- RemoveStoryboard.cs
- CodeArrayCreateExpression.cs
- SqlParameter.cs
- Polygon.cs
- UserControlAutomationPeer.cs
- BaseValidatorDesigner.cs
- PropertyChangedEventManager.cs
- assemblycache.cs
- SchemaElementLookUpTable.cs
- TextLine.cs
- ToolStripItemTextRenderEventArgs.cs
- WebControlsSection.cs
- ValueTypeFixupInfo.cs