SignatureAttributes Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | No flags. |
Generic | 16 | A generic method. |
Instance | 32 | An instance method. The Ecma 335 CLI Specification refers to this flag as |
ExplicitThis | 64 | Indicates the first explicitly declared parameter that represents the instance pointer. |