Show / Hide Table of Contents

Class ExpressionContextProcessingResult

Describes the result/outcome of an invocation of IProcessesExpressionContext.

Inheritance
System.Object
ExpressionContextProcessingResult
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: ZptSharp.Rendering
Assembly: ZptSharp.Abstractions.dll
Syntax
public class ExpressionContextProcessingResult

Constructors

| Improve this Doc View Source

ExpressionContextProcessingResult()

Initializes a new instance of the ExpressionContextProcessingResult class.

Declaration
public ExpressionContextProcessingResult()

Properties

| Improve this Doc View Source

AdditionalContexts

Gets or sets a collection of additional contexts to be iterated-over. Typically these contexts are created/added as a result of the processing.

Declaration
public IList<ExpressionContext> AdditionalContexts { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ExpressionContext>

The additional contexts.

| Improve this Doc View Source

DoNotProcessChildren

Gets a value indicating whether this ExpressionContextProcessingResult indicates that children of the current node should not be processed.

Declaration
public bool DoNotProcessChildren { get; }
Property Value
Type Description
System.Boolean

true if child nodes should not be processed; otherwise, false.

| Improve this Doc View Source

Noop

Gets a no-operation instance of ExpressionContextProcessingResult. This result indicates that context-processing completed without error, but that no particular action needs to be taken as a result.

Declaration
public static ExpressionContextProcessingResult Noop { get; }
Property Value
Type Description
ExpressionContextProcessingResult

The no-op result.

| Improve this Doc View Source

WithoutChildren

Gets an instance of ExpressionContextProcessingResult which indicates that child-contexts should not be processed.

Declaration
public static ExpressionContextProcessingResult WithoutChildren { get; }
Property Value
Type Description
ExpressionContextProcessingResult

The processing result.

  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX