Interface ICollectionVariableElementSnapshot
Represents a type-erased snapshot of an IReadOnlyCollectionVariable element.
public interface ICollectionVariableElementSnapshot
Properties
Element
Underlying element.
object Element { get; }
Property Value
ElementType
Element type.
Type ElementType { get; }
Property Value
NewErrors
Collection of validation errors after the change.
IEnumerable NewErrors { get; }
Property Value
NewState
Current state of the Element.
CollectionVariableElementState NewState { get; }
Property Value
NewWarnings
Collection of validation warnings after the change.
IEnumerable NewWarnings { get; }
Property Value
PreviousErrors
Collection of validation errors before the change.
IEnumerable PreviousErrors { get; }
Property Value
PreviousState
Previous state of the Element.
CollectionVariableElementState PreviousState { get; }
Property Value
PreviousWarnings
Collection of validation warnings before the change.
IEnumerable PreviousWarnings { get; }
Property Value
ValidationResultType
Validation result type.
Type ValidationResultType { get; }