Type.IsNestedFamORAssem 속성
Type이 중첩되었으며 자체 패밀리와 자체 어셈블리 중 하나에 속하는 클래스에만 표시되는지 여부를 나타내는 값을 가져옵니다.
네임스페이스: System
어셈블리: mscorlib(mscorlib.dll)
구문
‘선언
Public ReadOnly Property IsNestedFamORAssem As Boolean
‘사용 방법
Dim instance As Type
Dim value As Boolean
value = instance.IsNestedFamORAssem
public bool IsNestedFamORAssem { get; }
public:
virtual property bool IsNestedFamORAssem {
bool get () sealed;
}
/** @property */
public final boolean get_IsNestedFamORAssem ()
public final function get IsNestedFamORAssem () : boolean
속성 값
Type이 중첩되어 있고 자체 패밀리 또는 자체 어셈블리에 속하는 클래스에만 표시되면 true이고, 그렇지 않으면 false입니다.
설명
현재 Type이 제네릭 형식의 형식 매개 변수를 나타내는 경우 이 속성은 언제나 false를 반환합니다.
TypeAttributes.VisibilityMask에서는 표시 특성을 선택합니다.
Type 개체 패밀리는 정확히 동일한 Type 및 해당 하위 형식의 모든 개체로 정의됩니다.
예제
다음 예제에서는 패밀리 또는 어셈블리 표시 유형으로 중첩된 클래스를 선언하고 중첩된 클래스의 IsNestedFamORAssem 속성 값을 표시합니다.
Imports System
Imports Microsoft.VisualBasic
' Enclose a class.
Class MyClassA
' Protected friend nested class.
Protected Friend Class MyClassB
End Class 'MyClassB
End Class 'MyClassA
Class MyTestClass
Public Shared Sub Main()
' Get the type of the nested class.
Dim myTypeB As Type = GetType(MyClassA.MyClassB)
' Get the IsNestedFamORAssem property of the nested class.
Console.WriteLine(ControlChars.Cr + "The IsNestedFamORAssem property value of the nested class is {0}.", myTypeB.IsNestedFamORAssem.ToString())
End Sub 'Main
End Class 'MyTestClass
using System;
// Enclose a class.
class MyClassA
{
protected internal class MyClassB
{
}
}
class MyTestClass
{
public static void Main(string[] args)
{
// Get the type of the nested class.
Type myTypeB = typeof(MyClassA.MyClassB);
// Get the IsNestedFamORAssem property of the nested class.
Console.WriteLine("\nThe IsNestedFamORAssem property value of the nested class is {0}.", myTypeB.IsNestedFamANDAssem.ToString());
}
}
using namespace System;
// Enclose a class.
ref class MyClassA
{
public protected:
ref class MyClassB{};
};
int main()
{
// Get the type of the nested class.
Type^ myTypeB = MyClassA::MyClassB::typeid;
// Get the IsNestedFamORAssem property of the nested class.
Console::WriteLine( "\nThe IsNestedFamORAssem property value of the nested class is {0}.", myTypeB->IsNestedFamORAssem );
}
import System.*;
// Enclose a class.
class MyClassA
{
protected class MyClassB
{
} //MyClassB
} //MyClassA
class MyTestClass
{
public static void main(String[] args)
{
// Get the type of the nested class.
Type myTypeB = MyClassA.MyClassB.class.ToType();
// Get the IsNestedFamORAssem property of the nested class.
Console.WriteLine("\nThe IsNestedFamORAssem property value of the"
+ " nested class is {0}.",
System.Convert.ToString(myTypeB.get_IsNestedFamANDAssem()));
} //main
} //MyTestClass
플랫폼
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에서 지원