mirror of
https://github.com/github/codeql.git
synced 2026-04-14 03:24:06 +02:00
11 lines
312 B
Plaintext
11 lines
312 B
Plaintext
import csharp
|
|
|
|
from TrivialProperty prop
|
|
where
|
|
prop.getDeclaringType().hasQualifiedName("System.Reflection.AssemblyName")
|
|
or
|
|
prop.getDeclaringType().hasQualifiedName("System.Collections.DictionaryEntry")
|
|
or
|
|
prop.getDeclaringType().hasQualifiedName("Dataflow.Properties")
|
|
select prop.getQualifiedName()
|