Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- InfiniteIntConverter.cs
- SHA512.cs
- ParameterEditorUserControl.cs
- DesignSurfaceServiceContainer.cs
- Schema.cs
- URLString.cs
- BinaryOperationBinder.cs
- XmlSchemaSet.cs
- ToolTipService.cs
- SqlNotificationRequest.cs
- ProviderBase.cs
- Page.cs
- _SecureChannel.cs
- DataObjectAttribute.cs
- MobileCategoryAttribute.cs
- IEnumerable.cs
- PolicyImporterElementCollection.cs
- ClientBuildManagerCallback.cs
- CodeGenerator.cs
- Policy.cs
- UnsignedPublishLicense.cs
- SQLInt64Storage.cs
- XmlReflectionMember.cs
- StateDesigner.cs
- GeometryHitTestParameters.cs
- StorageInfo.cs
- PartBasedPackageProperties.cs
- SharedDp.cs
- ByteStorage.cs
- TokenBasedSet.cs
- QilDataSource.cs
- PageAdapter.cs
- SqlConnectionHelper.cs
- NullableDecimalSumAggregationOperator.cs
- CompilationPass2Task.cs
- CompatibleIComparer.cs
- WorkItem.cs
- LinkButton.cs
- ViewValidator.cs
- PageBuildProvider.cs
- ManagedWndProcTracker.cs
- QueryTaskGroupState.cs
- SQLChars.cs
- ObjectQuery.cs
- basenumberconverter.cs
- StyleBamlRecordReader.cs
- SafeThemeHandle.cs
- EventLogStatus.cs
- EmptyQuery.cs
- WebPartAddingEventArgs.cs
- TableParagraph.cs
- ListViewDataItem.cs
- GeometryValueSerializer.cs
- Scene3D.cs
- arabicshape.cs
- PermissionRequestEvidence.cs
- AstNode.cs
- CustomErrorsSection.cs
- AQNBuilder.cs
- SimpleHandlerBuildProvider.cs
- COM2Properties.cs
- TraceListener.cs
- ThemeConfigurationDialog.cs
- _NestedSingleAsyncResult.cs
- ReturnType.cs
- ControlCollection.cs
- KoreanLunisolarCalendar.cs
- ExpressionConverter.cs
- TextBoxLine.cs
- SiteMapPath.cs
- SecurityAccessDeniedException.cs
- regiisutil.cs
- StateInitialization.cs
- WebPartVerbCollection.cs
- HttpPostClientProtocol.cs
- BulletChrome.cs
- COM2AboutBoxPropertyDescriptor.cs
- XmlSchemaSimpleTypeRestriction.cs
- ComponentDispatcher.cs
- BindingContext.cs
- WorkflowApplicationAbortedEventArgs.cs
- WhereQueryOperator.cs
- NotFiniteNumberException.cs
- ExpressionBinding.cs
- LoadRetryConstantStrategy.cs
- CheckPair.cs
- AmbientProperties.cs
- LassoSelectionBehavior.cs
- Window.cs
- TextBoxRenderer.cs
- KeyTimeConverter.cs
- MouseEventArgs.cs
- DiagnosticTrace.cs
- SiteOfOriginPart.cs
- LinkedResource.cs
- SerializationTrace.cs
- PermissionToken.cs
- ping.cs
- DisplayToken.cs
- SqlCommandBuilder.cs