GBThreadCreateThread Method (ParameterizedThreadStart, Repository, String, ThreadPriority) | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Creates a thread.
Namespace:
Telogis.GeoBase
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax public static Thread CreateThread(
ParameterizedThreadStart start,
Repository repo,
string name,
ThreadPriority priority
)
Public Shared Function CreateThread (
start As ParameterizedThreadStart,
repo As Repository,
name As String,
priority As ThreadPriority
) As Thread
Parameters
- start
- Type: System.ThreadingParameterizedThreadStart
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