mirror of
https://github.com/github/codeql.git
synced 2026-03-23 07:56:54 +01: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()
|
|
|