UpdateControllerOverrideHostProcessInfo Method |
Note: This API is now obsolete.
Overrides the host process information to allow the controller to apply updates on behalf of another application
Namespace: Kjs.AppLife.Update.ControllerAssembly: Kjs.AppLife.Update.Controller (in Kjs.AppLife.Update.Controller.dll) Version: 5.1.0.9 (5.1.0.9)
Syntax[ObsoleteAttribute("Process names are no longer used to shut down application instances. Use OverrideAssemblyLocation instead.")]
public void OverrideHostProcessInfo(
string processName,
string assemblyLocation
)
<ObsoleteAttribute("Process names are no longer used to shut down application instances. Use OverrideAssemblyLocation instead.")>
Public Sub OverrideHostProcessInfo (
processName As String,
assemblyLocation As String
)
public:
[ObsoleteAttribute(L"Process names are no longer used to shut down application instances. Use OverrideAssemblyLocation instead.")]
void OverrideHostProcessInfo(
String^ processName,
String^ assemblyLocation
)
[<ObsoleteAttribute("Process names are no longer used to shut down application instances. Use OverrideAssemblyLocation instead.")>]
member OverrideHostProcessInfo :
processName : string *
assemblyLocation : string -> unit
Parameters
- processName
- Type: SystemString
The Process Name of the application that is to be updated. If configured to shutdwon,
this is the Process that the controller will attempt to shutdown when ApplyUpdate is called. - assemblyLocation
- Type: SystemString
The complete location of the host application assembly. If configured to restart
after an update, this is the assembly that will be restarted.
See Also