Forcefully terminates a model on the target.

Namespace:  Quanser.Targets
Assembly:  Quanser.Targets (in Quanser.Targets.dll)

Syntax

Visual Basic (Declaration)
Public Sub KillModel ( _
	model As String _
)
C#
public void KillModel(
	string model
)
Visual C++
public:
void KillModel(
	String^ model
)
JavaScript
function killModel(model);

Parameters

model
Type: System..::.String

Remarks

This method kills a model on the target. The model is forcefully terminated and is not shut down cleanly. Model termination code is not run so final outputs will not be written.

This method should never be used unless absolutely necessary. Use StopModel(String) instead.

See Also