ModAsyncOperation Class |
Namespace: UMod
public class ModAsyncOperation : IEnumerator
The ModAsyncOperation type exposes the following members.
| Name | Description | |
|---|---|---|
| ModAsyncOperation | Initializes a new instance of the ModAsyncOperation class |
| Name | Description | |
|---|---|---|
| Current |
IEnumerator.Current imlementation.
| |
| IsDone |
Returns true if the async operation has finished or false if it is still running.
| |
| IsSuccessful |
Returns true if the async operation completed successfully or false if an error occurred.
| |
| Progress |
Get the current progress of the async operation.
This is a normalized value between 0-1.
| |
| ProgressPercentage |
Get the current progress percentage of the async operation.
| |
| Result |
Get the Object result of the async operation.
| |
| Status |
Get the current status of the async operation.
|
| Name | Description | |
|---|---|---|
| MarkAsCompleted | ||
| MoveNext |
IEnumerator.MoveNext() implementation.
| |
| Reset |
IEnumerator.Reset() implementation.
|
| Name | Description | |
|---|---|---|
| isSuccessful |
Was the operation successful or did something gowrong.
| |
| status |
Get the current status of the async operation.
| |
| userData |
User data suppiled by the object that marked the operation as complete.
|