mirror of
https://github.com/github/codeql.git
synced 2026-03-22 15:36:48 +01:00
14 lines
363 B
Plaintext
14 lines
363 B
Plaintext
/**
|
|
* @name Test for delegates
|
|
*/
|
|
import csharp
|
|
|
|
from DelegateType d
|
|
where d.hasQualifiedName("System.Threading.ContextCallback")
|
|
and d.getNumberOfParameters() = 1
|
|
and d.getParameter(0).hasName("state")
|
|
and d.getParameter(0).isValue()
|
|
and d.getParameter(0).getType() instanceof ObjectType
|
|
and d.getReturnType() instanceof VoidType
|
|
select d.toString()
|