ConstraintExpression.InstanceOf Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
InstanceOf(Type) |
Returns a constraint that tests whether the actual value is of the type supplied as an argument or a derived type. |
InstanceOf<T>() |
Returns a constraint that tests whether the actual value is of the type supplied as an argument or a derived type. |
InstanceOf(Type)
Returns a constraint that tests whether the actual value is of the type supplied as an argument or a derived type.
public NUnit.Framework.Constraints.InstanceOfTypeConstraint InstanceOf (Type expectedType);
member this.InstanceOf : Type -> NUnit.Framework.Constraints.InstanceOfTypeConstraint
Parameters
- expectedType
- Type
Returns
Applies to
InstanceOf<T>()
Returns a constraint that tests whether the actual value is of the type supplied as an argument or a derived type.
public NUnit.Framework.Constraints.InstanceOfTypeConstraint InstanceOf<T> ();
member this.InstanceOf : unit -> NUnit.Framework.Constraints.InstanceOfTypeConstraint
Type Parameters
- T