MethodAttributes 枚举
指定方法属性的标志。这些标志在 corhdr.h 文件中定义。
此枚举有一个 FlagsAttribute 属性,允许其成员值按位组合。
**命名空间:**System.Reflection
**程序集:**mscorlib(在 mscorlib.dll 中)
语法
声明
<SerializableAttribute> _
<FlagsAttribute> _
<ComVisibleAttribute(True)> _
Public Enumeration MethodAttributes
用法
Dim instance As MethodAttributes
[SerializableAttribute]
[FlagsAttribute]
[ComVisibleAttribute(true)]
public enum MethodAttributes
[SerializableAttribute]
[FlagsAttribute]
[ComVisibleAttribute(true)]
public enum class MethodAttributes
/** @attribute SerializableAttribute() */
/** @attribute FlagsAttribute() */
/** @attribute ComVisibleAttribute(true) */
public enum MethodAttributes
SerializableAttribute
FlagsAttribute
ComVisibleAttribute(true)
public enum MethodAttributes
成员
成员名称 | 说明 | |
---|---|---|
Abstract | 指示此类不提供此方法的实现。 | |
Assembly | 指示此方法可由该程序集的任何类访问。 | |
CheckAccessOnOverride | 指示仅当此方法可访问时,才可以对其进行重写。 | |
FamANDAssem | 指示此方法只能由该类型和它在此程序集中的派生类型的成员访问。 | |
Family | 指示此方法只可由该类及其派生类的成员访问。 | |
FamORAssem | 指示此方法可由任意位置的派生类访问,也可由程序集中的任何类访问。 | |
Final | 指示无法重写此方法。 | |
HasSecurity | 指示此方法具有关联的安全性。保留此标志仅供运行时使用。 | |
HideBySig | 指示此方法按名称和签名隐藏,否则只按名称隐藏。 | |
MemberAccessMask | 检索可访问性信息。 | |
NewSlot | 指示此方法总是获取 vtable 中的新槽。 | |
PinvokeImpl | 指示此方法的实现通过 PInvoke(平台调用服务)转发。 | |
Private | 指示此方法只能由当前类访问。 | |
PrivateScope | 指示该成员不能被引用。 | |
Public | 指示此方法可由任何包括该对象的对象访问。 | |
RequireSecObject | 指示此方法调用另一个包含安全性代码的方法。保留此标志仅供运行时使用。 | |
ReservedMask | 指示仅供运行时使用的保留标志。 | |
ReuseSlot | 指示此方法将重复使用 vtable 中的现有槽。这是默认行为。 | |
RTSpecialName | 指示公共语言运行库检查名称编码。 | |
SpecialName | 指示此方法是特殊的。名称描述此方法的特殊性。 | |
Static | 指示在类型上定义此方法,否则基于每个实例定义此方法。 | |
UnmanagedExport | 指示此托管方法由 thunk 导出为非托管代码。 | |
Virtual | 指示此方法为虚方法。 | |
VtableLayoutMask | 检索 vtable 属性。 |
示例
下面的示例显示指定方法的属性。
Imports System
Imports System.Reflection
Imports Microsoft.VisualBasic
Class AttributesSample
Public Sub Mymethod(ByVal int1m As Integer, ByRef str2m As String, ByRef str3m As String)
str2m = "in Mymethod"
End Sub 'Mymethod
Public Shared Function Main(ByVal args() As String) As Integer
Console.WriteLine("Reflection.MethodBase.Attributes Sample")
' Get the type of a chosen class.
Dim MyType As Type = Type.GetType("AttributesSample")
' Get the method Mymethod on the type.
Dim Mymethodbase As MethodBase = MyType.GetMethod("Mymethod")
' Display the method name and signature.
Console.WriteLine("Mymethodbase = {0}", Mymethodbase)
' Get the MethodAttribute enumerated value.
Dim Myattributes As MethodAttributes = Mymethodbase.Attributes
' Display the flags that are set.
PrintAttributes(GetType(System.Reflection.MethodAttributes), CInt(Myattributes))
Return 0
End Function 'Main
Public Shared Sub PrintAttributes(ByVal attribType As Type, ByVal iAttribValue As Integer)
If Not attribType.IsEnum Then
Console.WriteLine("This type is not an enum.")
Return
End If
Dim fields As FieldInfo() = attribType.GetFields((BindingFlags.Public Or BindingFlags.Static))
Dim i As Integer
For i = 0 To fields.Length - 1
Dim fieldvalue As Integer = CType(fields(i).GetValue(Nothing), Int32)
If (fieldvalue And iAttribValue) = fieldvalue Then
Console.WriteLine(fields(i).Name)
End If
Next i
End Sub 'PrintAttributes
End Class 'AttributesSample
using System;
using System.Reflection;
class AttributesSample
{
public void Mymethod (int int1m, out string str2m, ref string str3m)
{
str2m = "in Mymethod";
}
public static int Main(string[] args)
{
Console.WriteLine ("Reflection.MethodBase.Attributes Sample");
// Get the type of the chosen class.
Type MyType = Type.GetType("AttributesSample");
// Get the method Mymethod on the type.
MethodBase Mymethodbase = MyType.GetMethod("Mymethod");
// Display the method name and signature.
Console.WriteLine("Mymethodbase = " + Mymethodbase);
// Get the MethodAttribute enumerated value.
MethodAttributes Myattributes = Mymethodbase.Attributes;
// Display the flags that are set.
PrintAttributes(typeof(System.Reflection.MethodAttributes), (int) Myattributes);
return 0;
}
public static void PrintAttributes(Type attribType, int iAttribValue)
{
if (!attribType.IsEnum) {Console.WriteLine("This type is not an enum."); return;}
FieldInfo[] fields = attribType.GetFields(BindingFlags.Public | BindingFlags.Static);
for (int i = 0; i < fields.Length; i++)
{
int fieldvalue = (Int32)fields[i].GetValue(null);
if ((fieldvalue & iAttribValue) == fieldvalue)
{
Console.WriteLine(fields[i].Name);
}
}
}
}
using namespace System;
using namespace System::Reflection;
using namespace System::Runtime::InteropServices;
public ref class AttributesSample
{
public:
void Mymethod( int int1m, [Out]interior_ptr<String^> str2m, interior_ptr<String^> str3m )
{
*str2m = "in Mymethod";
}
};
void PrintAttributes( Type^ attribType, int iAttribValue )
{
if ( !attribType->IsEnum )
{
Console::WriteLine( "This type is not an enum." );
return;
}
array<FieldInfo^>^fields = attribType->GetFields( static_cast<BindingFlags>(BindingFlags::Public | BindingFlags::Static) );
for ( int i = 0; i < fields->Length; i++ )
{
int fieldvalue = safe_cast<Int32>(fields[ i ]->GetValue( nullptr ));
if ( (fieldvalue & iAttribValue) == fieldvalue )
{
Console::WriteLine( fields[ i ]->Name );
}
}
}
int main()
{
Console::WriteLine( "Reflection.MethodBase.Attributes Sample" );
// Get the type of the chosen class.
Type^ MyType = Type::GetType( "AttributesSample" );
// Get the method Mymethod on the type.
MethodBase^ Mymethodbase = MyType->GetMethod( "Mymethod" );
// Display the method name and signature.
Console::WriteLine( "Mymethodbase = {0}", Mymethodbase );
// Get the MethodAttribute enumerated value.
MethodAttributes Myattributes = Mymethodbase->Attributes;
// Display the flags that are set.
PrintAttributes( System::Reflection::MethodAttributes::typeid, (int)Myattributes );
return 0;
}
import System.*;
import System.Reflection.*;
class AttributesSample
{
public void MyMethod(int int1m,
/** @ref
*/ String str2m,
/** @ref
*/ String str3m)
{
str2m = "in MyMethod";
} //MyMethod
public static void main(String[] args)
{
Console.WriteLine("Reflection.MethodBase.Attributes Sample");
// Get the type of the chosen class.
Type myType = Type.GetType("AttributesSample");
// Get the method MyMethod on the type.
MethodBase myMethodBase = myType.GetMethod("MyMethod");
// Display the method name and signature.
Console.WriteLine(("myMethodBase = " + myMethodBase));
// Get the MethodAttribute enumerated value.
MethodAttributes myAttributes = myMethodBase.get_Attributes();
// Display the flags that are set.
PrintAttributes(System.Reflection.MethodAttributes.class.ToType(),
(int)(myAttributes));
} //main
public static void PrintAttributes(Type attribType, int iAttribValue)
{
if (!(attribType.get_IsEnum())) {
Console.WriteLine("This type is not an enum.");
return ;
}
FieldInfo fields[] = attribType.GetFields(
(BindingFlags.Public | BindingFlags.Static));
for(int i=0; i < fields.length; i++) {
int fieldValue = (int)((Int32)(fields[i].GetValue(null)));
if ((fieldValue & iAttribValue) == fieldValue ) {
Console.WriteLine(fields[i].get_Name());
}
}
} //PrintAttributes
} //AttributesSample
平台
Windows 98、Windows 2000 SP4、Windows CE、Windows Millennium Edition、Windows Mobile for Pocket PC、Windows Mobile for Smartphone、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition
.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求。
版本信息
.NET Framework
受以下版本支持:2.0、1.1、1.0
.NET Compact Framework
受以下版本支持:2.0、1.0