mirror of
https://github.com/github/codeql.git
synced 2026-03-06 15:49:08 +01:00
14 lines
223 B
Plaintext
14 lines
223 B
Plaintext
/**
|
|
* @name Test for events
|
|
*/
|
|
|
|
import csharp
|
|
|
|
where
|
|
count(Event e |
|
|
e.getDeclaringType().hasFullyQualifiedName("Events", "Control") and
|
|
e.getType().hasName("EventHandler") and
|
|
e.isPublic()
|
|
) = 2
|
|
select 1
|