GBThreadRunThread Method (ThreadStart, Repository, String, ThreadPriority) | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Creates and starts a thread.
Namespace:
Telogis.GeoBase
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax public static Thread RunThread(
ThreadStart start,
Repository repo,
string name,
ThreadPriority priority
)
Public Shared Function RunThread (
start As ThreadStart,
repo As Repository,
name As String,
priority As ThreadPriority
) As Thread
Parameters
- start
- Type: System.ThreadingThreadStart
The delegate representing the method to run on the new
thread. - repo
- Type: Telogis.GeoBase.RepositoriesRepository
The Repository to set as the new thread's
CurrentThreadRepository. - name
- Type: SystemString
The name of the new thread. - priority
- Type: System.ThreadingThreadPriority
The priority of the new thread.
Return Value
Type:
ThreadThe new thread.
See Also