UpdateControllerDisableControllerIpc Property |
Gets or sets a value that indicates whether the controller will communicate with other
controllers that share the same
ApplicationId.
Namespace: Kjs.AppLife.Update.ControllerAssembly: Kjs.AppLife.Update.Controller (in Kjs.AppLife.Update.Controller.dll) Version: 5.1.0.9 (5.1.0.9)
Syntaxpublic bool DisableControllerIpc { get; set; }
Public Property DisableControllerIpc As Boolean
Get
Set
public:
property bool DisableControllerIpc {
bool get ();
void set (bool value);
}
member DisableControllerIpc : bool with get, set
Property Value
Type:
Boolean to disable communication between controllers; otherwise,
.
Exceptions
Remarks
All controllers that share the same
ApplicationId and have
DisableControllerIpc
set to
can communicate, even those in different applications. Communication
is used to cause all instances of an application to shut down before an update begins. If the controller
that starts an update has
DisableControllerIpc set to
, no other
instances of the application will receive shutdown notification. See the
UpdateStarting event for more information.
See Also