DynamicMethod.Attributes Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene gli attributi specificati quando il metodo dinamico è stato creato.
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
Valore della proprietà
Combinazione bit per bit dei valori MethodAttributes che rappresentano gli attributi relativi al metodo.
Esempio
Nell'esempio di codice seguente vengono visualizzati gli attributi del metodo di un metodo dinamico. Questo esempio di codice fa parte di un esempio più ampio fornito per la DynamicMethod classe .
// 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)
Commenti
Attualmente, gli attributi del metodo per un metodo dinamico sono sempre Public e Static.