A function which returns whether the thread of control, identified by
            info, is still running.
            
    Namespace: 
   BerkeleyDBAssembly: libdb_dotnet53 (in libdb_dotnet53.dll) Version: 5.3.28.0
 Syntax
Syntax
| C# | 
|---|
| public delegate bool ThreadIsAliveDelegate( DbThreadID info, bool procOnly ) | 
| Visual Basic (Declaration) | 
|---|
| Public Delegate Function ThreadIsAliveDelegate ( _ info As DbThreadID, _ procOnly As Boolean _ ) As Boolean | 
| Visual C++ | 
|---|
| public delegate bool ThreadIsAliveDelegate( DbThreadID^ info, bool procOnly ) | 
Parameters
- info
- Type: BerkeleyDB..::.DbThreadID
 The thread of control to check
- procOnly
- Type: System..::.Boolean
 If true, return only if the process is alive, and the threadID portion of info should be ignored.





