Set message with expected and actual objects

Namespace:  TypeMock
Assembly:  TypeMock (in TypeMock.dll) Version: 8.9.2.0 (8.9.2.0)

Syntax

C#
public void SetMessage(
	ParameterCheckerEventArgs data,
	Object expected,
	Object actual
)
Visual Basic (Declaration)
Public Sub SetMessage ( _
	data As ParameterCheckerEventArgs, _
	expected As Object, _
	actual As Object _
)
Visual C++
public:
void SetMessage(
	ParameterCheckerEventArgs^ data, 
	Object^ expected, 
	Object^ actual
)

Parameters

data
Type: TypeMock..::.ParameterCheckerEventArgs
Information about the checked argument
expected
Type: System..::.Object
The expected argument
actual
Type: System..::.Object
The actual argument

See Also