Click or drag to resize

Guard Methods

Methods
  NameDescription
Public methodStatic memberArgumentIsBetweenT(T, T, T, String)
Throws an exception if argumentValue is less than lowerValue or greater than higherValue.
Public methodStatic memberArgumentIsBetweenT(T, T, T, String, String)
Throws an exception if argumentValue is less than lowerValue or greater than higherValue.
Public methodStatic memberArgumentIsGreaterOrEqualThanT(T, T, String)
Throws an exception if argumentValue is less than lowerValue.
Public methodStatic memberArgumentIsGreaterOrEqualThanT(T, T, String, String)
Throws an exception if argumentValue is less than lowerValue.
Public methodStatic memberArgumentIsGreaterThanT(T, T, String)
Throws an exception if argumentValue is less than or equal to lowerValue.
Public methodStatic memberArgumentIsGreaterThanT(T, T, String, String)
Throws an exception if argumentValue is less than or equal to lowerValue.
Public methodStatic memberArgumentIsLowerOrEqualThanT(T, T, String)
Throws an exception if argumentValue is greater than higherValue.
Public methodStatic memberArgumentIsLowerOrEqualThanT(T, T, String, String)
Throws an exception if argumentValue is greater than higherValue.
Public methodStatic memberArgumentIsLowerThanT(T, T, String)
Throws an exception if argumentValue is greater than or equal to higherValue.
Public methodStatic memberArgumentIsLowerThanT(T, T, String, String)
Throws an exception if argumentValue is greater than or equal to higherValue.
Public methodStatic memberArgumentIsNotNull(Object, String)
Throws ArgumentNullException if the given argument is .
Public methodStatic memberArgumentIsNotNull(Object, String, String)
Throws ArgumentNullException if the given argument is .
Public methodStatic memberArgumentIsNotNullOrEmpty(String, String)
Throws an exception if the tested string argument is or the empty string.
Public methodStatic memberArgumentIsNotNullOrEmpty(String, String, String)
Throws an exception if the tested string argument is or the empty string.
Public methodStatic memberArgumentIsNotNullOrEmptyT(IEnumerableT, String)
Throws an exception if the tested collection is or contains no elements.
Public methodStatic memberArgumentIsNotNullOrEmptyT(IEnumerableT, String, String)
Throws an exception if the tested collection is or contains no elements.
Public methodStatic memberArgumentIsNotOfTypeT(Object, String)
Throws an exception if argumentValue is of type T.
Public methodStatic memberArgumentIsNotOfTypeT(Boolean, Object, String)
Throws an exception if argumentValue is of type T or a subtype of T.
Public methodStatic memberArgumentIsNotOfTypeT(Object, String, String)
Throws an exception if argumentValue is of type T.
Public methodStatic memberArgumentIsNotOfTypeT(Boolean, Object, String, String)
Throws an exception if argumentValue is of type T or a subtype of T.
Public methodStatic memberArgumentIsOfTypeT(Object, String)
Throws an exception if argumentValue is not of type T.
Public methodStatic memberArgumentIsOfTypeT(Boolean, Object, String)
Throws an exception if argumentValue is not of type T or a subtype of T.
Public methodStatic memberArgumentIsOfTypeT(Object, String, String)
Throws an exception if argumentValue is not of type T.
Public methodStatic memberArgumentIsOfTypeT(Boolean, Object, String, String)
Throws an exception if argumentValue is not of type T or a subtype of T.
Public methodStatic memberArgumentIsValidEnum(Type, Object, String)
Throws an exception if argumentValue is not a member of enum type enumType.
Public methodStatic memberArgumentIsValidEnum(Type, Object, String, String)
Throws an exception if argumentValue is not a member of enum type enumType.
Public methodStatic memberArgumentIsValidPath(String, String)
Throws an exception if argumentValue does not denote a valid path.
Public methodStatic memberArgumentIsValidPath(String, String, String)
Throws an exception if argumentValue does not denote a valid path.
Top
See Also