SignatureAttributes Enum

Definition

Specifies additional flags that can be applied to method signatures. The underlying values of the fields in this type correspond to the representation in the leading signature byte represented by a SignatureHeader structure.

This enumeration supports a bitwise combination of its member values.

public enum class SignatureAttributes
[System.Flags]
public enum SignatureAttributes
[<System.Flags>]
type SignatureAttributes = 
Public Enum SignatureAttributes
Inheritance
SignatureAttributes
Attributes

Fields

ExplicitThis 64

Indicates the first explicitly declared parameter that represents the instance pointer.

Generic 16

A generic method.

Instance 32

An instance method.

The Ecma 335 CLI Specification refers to this flag as HAS_THIS.

None 0

No flags.

Applies to