Invokeable |
public class InvokeableThread : IInvokeableThread, IDisposable
The InvokeableThread type exposes the following members.
| Name | Description | |
|---|---|---|
| InvokeableThread(String, ISynchronizeInvoke) | Initializes a new instance of the InvokeableThread class. | |
| InvokeableThread(String, ThreadPriority, ISynchronizeInvoke) | Initializes a new instance of the InvokeableThread class. |
| Name | Description | |
|---|---|---|
| Dispose | Releases unmanaged and - optionally - managed resources. If the thread is still running, it is stopped. | |
| Dispose(Boolean) | Releases unmanaged and - optionally - managed resources. | |
| Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) | |
| Finalize | (Overrides ObjectFinalize) | |
| GetHashCode | Serves as the default hash function. (Inherited from Object) | |
| GetType | Gets the Type of the current instance. (Inherited from Object) | |
| Invoke | Executes the provided action synchronously. This means that this function returns only after the provided action was executed. | |
| InvokeAsync | Executes the provided action asynchronously. This means that this function immediately returns, without waiting for the action to be executed. | |
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) | |
| Start | Starts the invokable thread with a specified priority. The name argument is used for debugging purposes, it is assigned to the thread. | |
| Stop | Stops this instance, and disposes the underlying thread instance. | |
| ToString | Returns a string that represents the current object. (Inherited from Object) |