EvaluationStrategies EnumerationEvaluationStrategies EnumerationEvaluationStrategies Enumeration

Describes the way in which an expression will be evaluated.

Syntax

Public Enumeration EvaluationStrategies
public enum EvaluationStrategies
public:
enum EvaluationStrategies
 
The EvaluationStrategiesEvaluationStrategiesEvaluationStrategies type exposes the following members.

Members

 MemberDescription
MemberBoxedBoxedBoxed The expression will be evaluated as an XPathItemXPathItemXPathItem
MemberBoxingMaskBoxingMaskBoxingMask The union of all the bits that describe the boxing of the expression.
MemberEagerEagerEager If the expression is evaluated, then it will be evaluated completely.
MemberFullyStrictFullyStrictFullyStrict The expression will always be completely evaluated.
MemberNoneNoneNone No special strategies are applied (lazy boxed evaluation).
MemberSerializedSerializedSerialized The expression will only be serialized directly.
MemberStrictStrictStrict The expression will always be (partially) evaluated.
MemberStrictnessMaskStrictnessMaskStrictnessMask The union of all the bits that describe the strictness of the expression.
MemberStringValueStringValueStringValue Only the string values of nodes will be retrieved.
MemberUnboxedUnboxedUnboxed The expression will be evaluated as an unboxed atomic value.

Top