Click or drag to resize

GBThreadCreateThread Method (ParameterizedThreadStart, Int32, Repository, String, ThreadPriority)

Verizon Connect Logo
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,
	int maxStackSize,
	Repository repo,
	string name,
	ThreadPriority priority
)

Parameters

start
Type: System.ThreadingParameterizedThreadStart
The delegate representing the method to run on the new thread.
maxStackSize
Type: SystemInt32
The maximum stack size for 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: Thread
The new thread.
See Also