mirror of
https://github.com/github/codeql.git
synced 2026-04-28 10:15:14 +02:00
12 lines
176 B
Plaintext
12 lines
176 B
Plaintext
/**
|
|
* @name Test for properties
|
|
*/
|
|
import csharp
|
|
|
|
from Property p
|
|
where p.hasName("Caption")
|
|
and p.isReadWrite()
|
|
and p.isPublic()
|
|
select p, p.getGetter(), p.getSetter()
|
|
|