Defines that instances of the provided type are allowed to exist when this definition is asserted using MemAssertion.Assert(MemSnapShot, AssertionsDefinition, AssertionsThread).

Namespace:  SciTech.NetMemProfiler
Assembly:  MemProfiler2 (in MemProfiler2.dll)

Syntax

C#
public void AllowInstances(
	Type type
)
Visual Basic
Public Sub AllowInstances ( _
	type As Type _
)
Visual C++
public:
void AllowInstances(
	Type^ type
)

Parameters

type
Type: System..::..Type
The Type of the instances that should be allowed.

Remarks

Including a type in a call to AllowInstances, will override instance restrictions defined using a call to NoInstances(array<Type>[]()[][], Boolean) or NoNewInstances(array<Type>[]()[][], Boolean).

See Also