[This is preliminary documentation and is subject to change.]
Specifies assertion type. If the assertion method argument satisifes the condition, then the execution continues.
Otherwise, execution is assumed to be halted
Namespace: JetBrains.AnnotationsAssembly: fCraft (in fCraft.dll) Version: 0.6.2.4 (0.6.2.4)
Syntax
| C# |
public enum AssertionConditionType
Members
| Member | Value | Description |
|---|---|---|
| IS_TRUE | 0 |
Indicates that the marked parameter should be evaluated to true
|
| IS_FALSE | 1 |
Indicates that the marked parameter should be evaluated to false
|
| IS_NULL | 2 |
Indicates that the marked parameter should be evaluated to null value
|
| IS_NOT_NULL | 3 |
Indicates that the marked parameter should be evaluated to not null value
|