Type.IsNestedAssembly Property
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Gets a value indicating whether the Type is nested and visible only within its own assembly.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public ReadOnly Property IsNestedAssembly As Boolean
public bool IsNestedAssembly { get; }
Property Value
Type: System.Boolean
true if the Type is nested and visible only within its own assembly; otherwise, false.
Remarks
If the current Type represents a type parameter of a generic type, this property always returns false.
TypeAttributes.VisibilityMask selects the visibility attributes.
Examples
The following example declares a nested class with visibility in its own assembly, and displays its IsNestedAssembly property value.
Note: |
---|
To run this example, see Building Examples That Use a Demo Method and a TextBlock Control. |
' Nest a class.
Class MyClassA
Friend Class MyClassB
End Class 'MyClassB
End Class 'MyClassA
Class Example
Public Shared Sub Demo(ByVal outputBlock As System.Windows.Controls.TextBlock)
' Get the type of the nested class.
Dim myTypeB As Type = GetType(MyClassA.MyClassB)
' Get the IsNestedAssembly property of the nested class.
outputBlock.Text += String.Format(ControlChars.Cr + "The IsNestedAssembly property value of MyClassB is {0}.", myTypeB.IsNestedAssembly.ToString()) & vbCrLf
End Sub 'Main
End Class 'MyTestClass
using System;
// Nest a class.
class MyClassA
{
internal class MyClassB
{
}
}
class Example
{
public static void Demo(System.Windows.Controls.TextBlock outputBlock)
{
// Get the type of the nested class.
Type myTypeB = typeof(MyClassA.MyClassB);
// Get the IsNestedAssembly property of the nested class.
outputBlock.Text += String.Format("\nThe IsNestedAssembly property value of MyClassB is {0}.", myTypeB.IsNestedAssembly.ToString()) + "\n";
}
}
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Xbox 360, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.