MethodImplAttribute Конструкторы

Определение

Инициализирует новый экземпляр класса MethodImplAttribute.

Перегрузки

MethodImplAttribute()

Инициализирует новый экземпляр класса MethodImplAttribute.

MethodImplAttribute(Int16)

Инициализирует новый экземпляр класса MethodImplAttribute заданным значением MethodImplOptions.

MethodImplAttribute(MethodImplOptions)

Инициализирует новый экземпляр класса MethodImplAttribute заданным значением MethodImplOptions.

MethodImplAttribute()

Исходный код:
MethodImplAttribute.cs
Исходный код:
MethodImplAttribute.cs
Исходный код:
MethodImplAttribute.cs

Инициализирует новый экземпляр класса MethodImplAttribute.

public:
 MethodImplAttribute();
public MethodImplAttribute ();
Public Sub New ()

Применяется к

MethodImplAttribute(Int16)

Исходный код:
MethodImplAttribute.cs
Исходный код:
MethodImplAttribute.cs
Исходный код:
MethodImplAttribute.cs

Инициализирует новый экземпляр класса MethodImplAttribute заданным значением MethodImplOptions.

public:
 MethodImplAttribute(short value);
public MethodImplAttribute (short value);
new System.Runtime.CompilerServices.MethodImplAttribute : int16 -> System.Runtime.CompilerServices.MethodImplAttribute
Public Sub New (value As Short)

Параметры

value
Int16

Битовая маска, представляющая нужное значение MethodImplOptions, задающее свойства метода с атрибутами.

Применяется к

MethodImplAttribute(MethodImplOptions)

Исходный код:
MethodImplAttribute.cs
Исходный код:
MethodImplAttribute.cs
Исходный код:
MethodImplAttribute.cs

Инициализирует новый экземпляр класса MethodImplAttribute заданным значением MethodImplOptions.

public:
 MethodImplAttribute(System::Runtime::CompilerServices::MethodImplOptions methodImplOptions);
public MethodImplAttribute (System.Runtime.CompilerServices.MethodImplOptions methodImplOptions);
new System.Runtime.CompilerServices.MethodImplAttribute : System.Runtime.CompilerServices.MethodImplOptions -> System.Runtime.CompilerServices.MethodImplAttribute
Public Sub New (methodImplOptions As MethodImplOptions)

Параметры

methodImplOptions
MethodImplOptions

Значение MethodImplOptions, задающее свойства метода с атрибутами.

Комментарии

Этот конструктор задает битовые CorMethodImpl поля в таблице метаданных. Значение этих флагов можно получить во время выполнения, вызвав MethodInfo.GetMethodImplementationFlags метод или ConstructorInfo.GetMethodImplementationFlags .

См. также раздел

Применяется к