mirror of
https://github.com/github/codeql.git
synced 2026-03-06 23:56:48 +01:00
13 lines
202 B
Plaintext
13 lines
202 B
Plaintext
/**
|
|
* @name Test for events
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Event e
|
|
where
|
|
e.getName() = "Click" and
|
|
e.getDeclaringType().hasFullyQualifiedName("Events", "Button") and
|
|
e.isPublic()
|
|
select e, e.getType()
|