UpdateControllerCustomIpcData Property |
Gets or sets a string that is sent with all communications between controllers.
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 string CustomIpcData { get; set; }
Public Property CustomIpcData As String
Get
Set
public:
property String^ CustomIpcData {
String^ get ();
void set (String^ value);
}
member CustomIpcData : string with get, set
Property Value
Type:
String
A string that is sent with all communications between controllers. To access this string
from a controller receiving a message from this one, check the value of the
CustomData property of the
UpdateStartingEventArgs from the
UpdateStarting
event raised by the receiving controller.
See Also