MethodBase.IsFamilyOrAssembly 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得值,指出 FamORAssem 是否描述此方法或建構函式的潛在可視性;亦即,無論該方法或建構函式位於何處,衍生類別以及相同組件中的類別都可以呼叫它們。
public:
property bool IsFamilyOrAssembly { bool get(); };
public bool IsFamilyOrAssembly { get; }
member this.IsFamilyOrAssembly : bool
Public ReadOnly Property IsFamilyOrAssembly As Boolean
屬性值
如果 FamORAssem 有精確描述這個方法或建構函式 (Constructor) 的存取權限則為 true
,否則為 false
。
實作
範例
下列程式代碼範例會定義具有不同可見性層級的方法,並顯示其 IsAssembly、 IsFamily、 IsFamilyOrAssembly和 IsFamilyAndAssembly 屬性的值。
using namespace System;
using namespace System::Reflection;
public ref class Example
{
public:
void m_public() {};
internal:
void m_internal() {};
protected:
void m_protected() {};
protected public:
void m_protected_public() {};
protected private:
void m_protected_private() {};
};
void main()
{
Console::WriteLine("\n{0,-30}{1,-18}{2}", "", "IsAssembly", "IsFamilyOrAssembly");
Console::WriteLine("{0,-21}{1,-18}{2,-18}{3}\n",
"", "IsPublic", "IsFamily", "IsFamilyAndAssembly");
for each (MethodBase^ m in Example::typeid->GetMethods(
BindingFlags::Instance | BindingFlags::NonPublic | BindingFlags::Public))
{
if (m->Name->Substring(0, 1) == "m")
{
Console::WriteLine("{0,-21}{1,-9}{2,-9}{3,-9}{4,-9}{5,-9}",
m->Name,
m->IsPublic,
m->IsAssembly,
m->IsFamily,
m->IsFamilyOrAssembly,
m->IsFamilyAndAssembly
);
}
}
}
/* This code example produces output similar to the following:
IsAssembly IsFamilyOrAssembly
IsPublic IsFamily IsFamilyAndAssembly
m_public True False False False False
m_internal False True False False False
m_protected False False True False False
m_protected_public False False False True False
m_protected_private False False False False True
*/
using System;
using System.Reflection;
public class Example
{
public void m_public() {}
internal void m_internal() {}
protected void m_protected() {}
protected internal void m_protected_public() {}
private protected void m_private_protected() {}
public static void Main()
{
Console.WriteLine("\n{0,-30}{1,-18}{2}", "", "IsAssembly", "IsFamilyOrAssembly");
Console.WriteLine("{0,-21}{1,-18}{2,-18}{3}\n",
"", "IsPublic", "IsFamily", "IsFamilyAndAssembly");
foreach (MethodBase m in typeof(Example).GetMethods(
BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public))
{
if (m.Name.Substring(0, 1) == "m")
{
Console.WriteLine("{0,-21}{1,-9}{2,-9}{3,-9}{4,-9}{5,-9}",
m.Name,
m.IsPublic,
m.IsAssembly,
m.IsFamily,
m.IsFamilyOrAssembly,
m.IsFamilyAndAssembly
);
}
}
}
}
/* This code example produces output similar to the following:
IsAssembly IsFamilyOrAssembly
IsPublic IsFamily IsFamilyAndAssembly
m_public True False False False False
m_internal False True False False False
m_protected False False True False False
m_protected_public False False False True False
m_private_protected False False False False True
*/
Imports System.Reflection
Public class Example
Public Sub m_Public()
End Sub
Friend Sub m_Friend()
End Sub
Protected Sub m_Protected()
End Sub
Protected Friend Sub m_Protected_Friend()
End Sub
Private Protected Sub m_Private_Protected()
End Sub
Public Shared Sub Main()
Console.WriteLine(vbCrLf & _
"{0,-30}{1,-18}{2}", "", "IsAssembly", "IsFamilyOrAssembly")
Console.WriteLine("{0,-21}{1,-18}{2,-18}{3}" & vbCrLf, _
"", "IsPublic", "IsFamily", "IsFamilyAndAssembly")
For Each m As MethodBase In GetType(Example).GetMethods( _
BindingFlags.Instance Or BindingFlags.NonPublic Or BindingFlags.Public)
If Left(m.Name, 1) = "m"
Console.WriteLine("{0,-21}{1,-9}{2,-9}{3,-9}{4,-9}{5,-9}", _
m.Name, _
m.IsPublic, _
m.IsAssembly, _
m.IsFamily, _
m.IsFamilyOrAssembly, _
m.IsFamilyAndAssembly _
)
End If
Next
End Sub
End Class
' This code example produces output similar to the following:
'
' IsAssembly IsFamilyOrAssembly
' IsPublic IsFamily IsFamilyAndAssembly
'
'm_Public True False False False False
'm_Friend False True False False False
'm_Protected False False True False False
'm_Protected_Friend False False False True False
'm_Private_Protected False False False False True
備註
如果類型成員具有 MethodAttributes.FamORAssem 可見度,則可以從衍生類別中的任何成員或相同元件中的任何成員呼叫,但不能從任何其他類型呼叫。
方法的實際可見度受限於其類型的可見度。
IsFamilyOrAssembly屬性可能true
適用於方法,但如果它是私用巢狀類型的方法,則方法不會顯示在包含的類型之外。
如果 Visual Basic protected public
中的可見度修飾詞位於 protected internal
C# (,則以 C++) Protected Friend
,完全描述MethodAttributes.FamORAssem方法或建構函式的可見度。