mirror of
https://github.com/github/codeql.git
synced 2026-04-18 13:34:02 +02:00
14 lines
242 B
Plaintext
14 lines
242 B
Plaintext
/**
|
|
* @name Test for events
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Event e
|
|
where
|
|
e.getName() = "MouseUp" and
|
|
e.getDeclaringType().hasQualifiedName("Events", "Control") and
|
|
e.getType().hasName("EventHandler") and
|
|
e.isPublic()
|
|
select e, e.getType()
|