Represents the method that will execute on a worker thread when
Start is used.
Syntax
Visual Basic (Declaration) | |
---|
Public Delegate Sub RshThreadStart( _
ByVal rsh As Rsh, _
ByVal state As Object _
) |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As New RshThreadStart(AddressOf HandlerMethod) |
Managed Extensions for C++ | |
---|
public: __gc __delegate void RshThreadStart(
Rsh* rsh,
Object* state
) |
Parameters
- rsh
- The Rsh component used to start execution of this method on a worker thread.
- state
- Any additional information provided by the user.
Requirements
Target Platforms: Microsoft .NET Framework 2.0
See Also