mirror of
https://github.com/github/codeql.git
synced 2026-03-26 17:28:29 +01:00
14 lines
232 B
Plaintext
14 lines
232 B
Plaintext
/**
|
|
* @name Test for properties
|
|
*/
|
|
import csharp
|
|
|
|
from Property p
|
|
where p.hasName("Y")
|
|
and p.getDeclaringType().hasQualifiedName("Properties.Point")
|
|
and p.isReadWrite()
|
|
and p.isPublic()
|
|
and p.isAutoImplemented()
|
|
select p
|
|
|