CapeValidationStatus Enumeration

Enumeration flag to indicate parameter validation status.

Definition

Namespace: CapeOpen
Assembly: CapeOpen (in CapeOpen.dll) Version: 1.0.0.0 (1.0.0.0)
[SerializableAttribute]
[GuidAttribute("678c0b04-7d66-11d2-a67d-00105a42887f")]
[ComVisibleAttribute(true)]
public enum CapeValidationStatus

Remarks

The enumeration has the following meanings:

(i) notValidated(CAPE_NOT_VALIDATED): The PMC's Validate() method has not been called after the last time that its value had been changed.

(ii) invalid(CAPE_INVALID): The last time that the PMC's Validate() method was called it returned false.

(iii) valid(CAPE_VALID): the last time that the PMC's Validate() method was called it returned true.

Members

CAPE_NOT_VALIDATED0 The PMC's Validate() method has not been called after the last time that its value had been changed.
CAPE_INVALID1 The last time that the PMC's Validate() method was called it returned false.
CAPE_VALID2 The last time that the PMC's Validate() method was called it returned true.

See Also