invoke()

MulticastDelegate< ReturnType(ArgumentTypes…)>::invoke(ArgumentTypes…) const method

Invokes all delegates currently present in the delegates collection. Delegates are invoked in the same order as they were added to the collection. The method blocks while the delegates are executed.

ReturnType System::MulticastDelegate<ReturnType(ArgumentTypes...)>::invoke(ArgumentTypes... args) const

Arguments

ParameterTypeDescription
argsArgumentTypes…Arguments to pass to the delegates to be invoked

Return Value

Return value of the last invoked delegate

See Also