Verifies that the specified object is not an instance of the specified type. The assertion fails if the type is found in the inheritance hierarchy of the object. Displays a message if the assertion fails, and applies the specified formatting to it.
Namespace:  Microsoft.VisualStudio.TestTools.UnitTesting
Assembly:  Microsoft.VisualStudio.QualityTools.UnitTestFramework (in Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)
Syntax
'Declaration
Public Shared Sub IsNotInstanceOfType ( _
    value As Object, _
    wrongType As Type, _
    message As String, _
    ParamArray parameters As Object() _
)
public static void IsNotInstanceOfType(
    Object value,
    Type wrongType,
    string message,
    params Object[] parameters
)
public:
static void IsNotInstanceOfType(
    Object^ value, 
    Type^ wrongType, 
    String^ message, 
    ... array<Object^>^ parameters
)
static member IsNotInstanceOfType : 
        value:Object * 
        wrongType:Type * 
        message:string * 
        parameters:Object[] -> unit
public static function IsNotInstanceOfType(
    value : Object, 
    wrongType : Type, 
    message : String, 
    ... parameters : Object[]
)
Parameters
- value 
 Type: Object- The object to verify is not of wrongType. 
- wrongType 
 Type: Type- The type that should not be found in the inheritance hierarchy of value. 
- message 
 Type: String- A message to display if the assertion fails. This message can be seen in the unit test results. 
- parameters 
 Type: array<Object[]- An array of parameters to use when formatting message. 
Exceptions
| Exception | Condition | 
|---|---|
| AssertFailedException | value is not nulla null reference (Nothing in Visual Basic) and wrongType is found in the inheritance hierarchy of value. | 
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Microsoft.VisualStudio.TestTools.UnitTesting Namespace