[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.Annotations
Assembly: fCraft (in fCraft.dll) Version: 0.6.2.4 (0.6.2.4)

Syntax

   
 C# 
public enum AssertionConditionType

Members

MemberValueDescription
IS_TRUE0
Indicates that the marked parameter should be evaluated to true
IS_FALSE1
Indicates that the marked parameter should be evaluated to false
IS_NULL2
Indicates that the marked parameter should be evaluated to null value
IS_NOT_NULL3
Indicates that the marked parameter should be evaluated to not null value

See Also