DynamicMethod.Attributes Свойство

Определение

Возвращает атрибуты, указанные при создании динамического метода.

public:
 virtual property System::Reflection::MethodAttributes Attributes { System::Reflection::MethodAttributes get(); };
public override System.Reflection.MethodAttributes Attributes { get; }
member this.Attributes : System.Reflection.MethodAttributes
Public Overrides ReadOnly Property Attributes As MethodAttributes

Значение свойства

Побитовое сочетание значений MethodAttributes, представляющее атрибуты для метода.

Примеры

В следующем примере кода отображаются атрибуты метода динамического метода. Этот пример входит в состав более крупного примера использования класса DynamicMethod.

// Display MethodAttributes for the dynamic method, set when 
// the dynamic method was created.
Console::WriteLine("\r\nMethod Attributes: {0}", hello->Attributes);
// Display MethodAttributes for the dynamic method, set when
// the dynamic method was created.
Console.WriteLine("\r\nMethod Attributes: {0}", hello.Attributes);
' Display MethodAttributes for the dynamic method, set when 
' the dynamic method was created.
Console.WriteLine(vbCrLf & "Method Attributes: {0}", _
    hello.Attributes)

Комментарии

В настоящее время атрибутами метода для динамического метода всегда Public являются и Static.

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