onClientResourceStop
Called after a resource stops.
Parameters
string resourceName
- resourceName: The name of the resource that stopped.
Examples
This example prints the name of the resource that was just stopped.
Lua Example:
AddEventHandler('onClientResourceStop', function (resourceName)
print('The resource ' .. resourceName .. ' has been stopped on the client.')
end)
C# Example:
// In class constructor
EventHandlers["onClientResourceStop"] += new Action<string>(OnClientResourceStop);
// Delegate method
private void OnClientResourceStop(string resourceName)
{
Debug.WriteLine($"The resource {resourceName} has been stopped on the client.");
}
JavaScript Example:
on("onClientResourceStop", (resourceName) => {
if(GetCurrentResourceName() != resourceName) {
return;
}
console.log(`The resource ${resourceName} has been stopped on the client.`)
});
Last modified December 18, 2019: Move {root->content} again for edit links. (483165c)