Jo Shields 3c1f479b9d Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
2015-04-07 09:35:12 +01:00

34 lines
1.2 KiB
C#

using System.IO;
namespace System.Web.Instrumentation {
/// <summary>
/// Contains information about the current position with page execution
/// </summary>
public class PageExecutionContext {
/// <summary>
/// A flag indicating if the block contains literal content which should be deeply scanned for selection mapping purposes
/// </summary>
public bool IsLiteral { get; set; }
/// <summary>
/// The length of the block in characters
/// </summary>
public int Length { get; set; }
/// <summary>
/// The start position of the block, zero-based, from the start of the outputted document
/// </summary>
public int StartPosition { get; set; }
/// <summary>
/// The TextWriter being used to output the document. Allows consumers to write tokens to the output stream for selection mapping
/// </summary>
public TextWriter TextWriter { get; set; }
/// <summary>
/// The virtual path to the source file. Used to allow consumers to find the source file to be used for selection mapping.
/// </summary>
public string VirtualPath { get; set; }
}
}