Click or drag to resize
UpdateControllerOverrideAssemblyLocation Method
Specifies a different assembly location for this application in order to allow the controller to apply updates on behalf of another application.

Namespace: Kjs.AppLife.Update.Controller
Assembly: Kjs.AppLife.Update.Controller (in Kjs.AppLife.Update.Controller.dll) Version: 5.1.0.9 (5.1.0.9)
Syntax
public void OverrideAssemblyLocation(
	string assemblyLocation
)

Parameters

assemblyLocation
Type: SystemString
The complete location of the host application assembly. If the application is set to restart after an update, this is the assembly that will be restarted.
Remarks
This method does not affect which applications are shut down before the update is applied. Any application that has an active UpdateController with a matching ApplicationId will be shut down before the update starts. To prevent shutdown, handle the UpdateStarting event and set Response to UpdateWithoutClosing or set DisableControllerIpc to .
See Also