mirror of
https://github.com/github/codeql.git
synced 2026-03-23 07:56:54 +01:00
12 lines
215 B
Plaintext
12 lines
215 B
Plaintext
/**
|
|
* @name Test for events
|
|
*/
|
|
import csharp
|
|
|
|
from Event e
|
|
where e.getName() = "Click"
|
|
and e.getDeclaringType().hasQualifiedName("Events.Button")
|
|
and e.getType().hasName("EventHandler")
|
|
select e, e.getType()
|
|
|