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

Class ExtensionType

A type extension declaration, for example extension(string s) { ... } in

static class MyExtensions {
  extension(string s) { ... }

Import path

import csharp

Direct supertypes

Indirect supertypes

Predicates

getAPrimaryQlClass

Gets the name of a primary CodeQL class to which this element belongs.

getExtendedType

Gets the type being extended by this extension type.

getReceiverParameter

Gets the receiver parameter of this extension type, if any.

hasReceiverParameter

Holds if this extension type has a receiver parameter.

Inherited predicates

fromLibrary

Holds if this element is from an assembly.

from Element
fromSource

Holds if this element is from source code.

from Element
getAChild

Gets a child of this element, if any.

from Element
getALocation

Gets a location of this element, including sources and assemblies.

from Element
getAParameter

Gets a parameter, if any.

from Parameterizable
getARawParameter

Gets a raw parameter (including the qualifier), if any.

from Parameterizable
getChild

Gets the ith child of this element (zero-based).

from Element
getDeclaringType

Gets the type containing this declaration, if any.

from Declaration
getFile

Gets the file containing this element.

from Element
getFullyQualifiedName

DEPRECATED: Use hasFullyQualifiedName instead.

from NamedElement
getFullyQualifiedNameDebug

INTERNAL: Do not use.

from NamedElement
getFullyQualifiedNameWithTypes

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

from Declaration
getIndex

Gets the index of this element among its parent’s other children (zero-based).

from Element
getLocation

Gets the location of this element. Where an element has locations in source and assemblies, choose the source location. If there are multiple assembly locations, choose only one.

from Element
getName

Gets the name of this element.

from NamedElement
getNumberOfChildren

Gets the number of children of this element.

from Element
getNumberOfParameters

Gets the number of parameters of this callable.

from Parameterizable
getParameter

Gets the ith parameter, excluding the this parameter.

from Parameterizable
getParent

Gets the parent of this element, if any.

from Element
getPrimaryQlClasses

Gets a comma-separated list of the names of the primary CodeQL classes to which this element belongs.

from Element
getRawParameter

Gets raw parameter i, including the this parameter at index 0.

from Parameterizable
getUnboundDeclaration

Gets the unbound version of this declaration, that is, the declaration where all type arguments have been removed. For example, in

from Declaration
getUndecoratedName

Gets the name of this declaration, without additional decoration such as <...>.

from Declaration
hasFullyQualifiedName

Holds if this element has the fully qualified name qualifier.name.

from Declaration
hasName

Holds if this element has name ‘name’.

from NamedElement
hasNoParameters

Holds if this declaration has no parameters.

from Parameterizable
hasUndecoratedName

Holds if this element has undecorated name ‘name’.

from Declaration
isCompilerGenerated

Holds if this declaration has been generated by the compiler, for example implicit constructors or accessors.

from Declaration
isInExtension

Holds if this declaration is in an extension type.

from Declaration
isSourceDeclaration

Holds if this declaration is unconstructed and in source code.

from Declaration
isUnboundDeclaration

Holds if this declaration is unbound.

from Declaration
parameterTypesToString

Gets the types of the parameters of this declaration as a comma-separated string.

from Parameterizable
toString

Gets a textual representation of this element.

from Declaration
toStringWithTypes

Gets the full textual representation of this element, including type information.

from Element