mirror of
https://github.com/github/codeql.git
synced 2026-03-23 16:06:47 +01:00
10 lines
233 B
Plaintext
10 lines
233 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
|