mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01: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()
|