mirror of
https://github.com/github/codeql.git
synced 2026-03-22 23:49:43 +01:00
12 lines
195 B
Plaintext
12 lines
195 B
Plaintext
/**
|
|
* @name Test for events
|
|
*/
|
|
import csharp
|
|
|
|
from Event e
|
|
where e.getName() = "Click"
|
|
and e.getDeclaringType().hasQualifiedName("Events.Button")
|
|
and e.isFieldLike()
|
|
select e, e.getType()
|
|
|