mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
14 lines
215 B
Plaintext
14 lines
215 B
Plaintext
/**
|
|
* @name Test for events
|
|
*/
|
|
|
|
import csharp
|
|
|
|
where
|
|
count(Event e |
|
|
e.getDeclaringType().hasQualifiedName("Events.Control") and
|
|
e.getType().hasName("EventHandler") and
|
|
e.isPublic()
|
|
) = 2
|
|
select 1
|