Свойство | Type | Description | |
---|---|---|---|
objInstallLock | object | ||
objUninstallLock | object |
Méthode | Description | |
---|---|---|
ModInstallerBase ( ) : System |
The default constructor.
|
|
Wait ( ) : void |
Blocks until the task set is completed.
|
Méthode | Description | |
---|---|---|
OnTaskSetCompleted ( |
Raises the TaskSetCompleted event. The event is raised asynchronously, so the installer can continue its work uninterrupted. This is to prevent deadlocks, primarily on the UI thread. |
|
OnTaskSetCompleted ( bool p_booSuccess, string p_strMessage, IMod p_modMod ) : void |
Raises the TaskSetCompleted event.
|
|
OnTaskStarted ( EventArgs |
Raises the TaskStarted event. The event is raised asynchronously, so the installer can continue its work uninterrupted. This is to prevent deadlocks, primarily on the UI thread. |
|
OnTaskStarted ( IBackgroundTask p_bgtTask ) : void |
Raises the TaskStarted event.
|
Méthode | Description | |
---|---|---|
EndTaskSetCompletedCallback ( IAsyncResult p_asrResult ) : void |
The callback called by the begin invoke method used to call the event asynchronously upon completion of the event.
|
|
EndTaskStartedCallback ( IAsyncResult p_asrResult ) : void |
The callback called by the begin invoke method used to call the event asynchronously upon completion of the event.
|
|
RaiseTaskSetCompleted ( |
Raises the TaskSetCompleted event.
|
|
RaiseTaskStarted ( EventArgs |
Raises the TaskStarted event.
|
protected OnTaskSetCompleted ( |
||
e | A |
|
Résultat | void |
protected OnTaskSetCompleted ( bool p_booSuccess, string p_strMessage, IMod p_modMod ) : void | ||
p_booSuccess | bool | Whether or not the task set completed successfully. |
p_strMessage | string | The message of the completed task set. |
p_modMod | IMod | The mod the installer acted upon. |
Résultat | void |
protected OnTaskStarted ( EventArgs |
||
e | EventArgs |
An |
Résultat | void |
protected OnTaskStarted ( IBackgroundTask p_bgtTask ) : void | ||
p_bgtTask | IBackgroundTask | The task that was started. |
Résultat | void |
protected static object objInstallLock | ||
Résultat | object |