Type.IsNestedPublic Property
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Gets a value indicating whether a class is nested and declared public.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public ReadOnly Property IsNestedPublic As Boolean
public bool IsNestedPublic { get; }
Property Value
Type: System.Boolean
true if the class is nested and declared public; 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 public nested class and displays its IsNestedPublic property value.
Note: |
---|
To run this example, see Building Examples That Use a Demo Method and a TextBlock Control. |
' Enclose a class.
Public Class Example
' Public nested class.
Public Class MyClassB
End Class
Public Shared Sub Demo(ByVal outputBlock As System.Windows.Controls.TextBlock)
' Get the type of the nested class.
Dim myTypeB As Type = GetType(Example.MyClassB)
' Get the IsNestedPublic property of the nested class.
outputBlock.Text += String.Format(ControlChars.Cr + "The IsNestedPublic property value of the nested class is {0}.", myTypeB.IsNestedPublic.ToString()) & vbCrLf
End Sub 'Main
End Class 'MyClassA
using System;
// Enclose a class.
public class Example
{
// Public nested class.
public class MyClassB
{
}
public static void Demo(System.Windows.Controls.TextBlock outputBlock)
{
// Get the type of the nested class.
Type myTypeB = typeof(Example.MyClassB);
// Get the IsNestedPublic property of the nested class.
outputBlock.Text += String.Format("\nThe IsNestedPublic property value of the nested class is {0}.", myTypeB.IsNestedPublic.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.