Is.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 static NUnit.Framework.Constraints.InstanceOfTypeConstraint InstanceOf (Type expectedType);
static member 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 static NUnit.Framework.Constraints.InstanceOfTypeConstraint InstanceOf<T> ();
static member InstanceOf : unit -> NUnit.Framework.Constraints.InstanceOfTypeConstraint
Type Parameters
- T