CodeQL library for C#
codeql/csharp-all 0.8.11-dev (changelog, source)
Search

Member predicate Declaration::getQualifiedNameWithTypes

DEPRECATED: Use getFullyQualifiedNameWithTypes instead.

Gets the fully qualified name of this declaration, including types, for example the fully qualified name with types of M on line 3 is N.C.M(int, string) in

namespace N {
  class C {
    void M(int i, string s) { }
  }
}
string getQualifiedNameWithTypes()