Type.IsPublic Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene un valore che indica se l'oggetto Type è dichiarato pubblico.
public:
property bool IsPublic { bool get(); };
public bool IsPublic { get; }
member this.IsPublic : bool
Public ReadOnly Property IsPublic As Boolean
Valore della proprietà
true
se l'oggetto Type è dichiarato pubblico e non è un tipo annidato; in caso contrario, false
.
Implementazioni
Esempio
Nell'esempio seguente viene creata un'istanza MyTestClass
di , viene verificata la proprietà e IsPublic
viene visualizzato il risultato.
using namespace System;
// Declare MyTestClass as public.
public ref class TestClass{};
int main()
{
TestClass^ testClassInstance = gcnew TestClass;
// Get the type of myTestClassInstance.
Type^ testType = testClassInstance->GetType();
// Get the IsPublic property of the myTestClassInstance.
bool isPublic = testType->IsPublic;
Console::WriteLine( "Is {0} public? {1}", testType->FullName, isPublic);
}
using System;
public class TestClass
{
}
public class Example
{
public static void Main()
{
TestClass testClassInstance = new TestClass();
// Get the type of myTestClassInstance.
Type testType = testClassInstance.GetType();
// Get the IsPublic property of testClassInstance.
bool isPublic = testType.IsPublic;
Console.WriteLine("Is {0} public? {1}", testType.FullName, isPublic);
}
}
// The example displays the following output:
// Is TestClass public? True
Public Class TestClass
End Class
Public Class Example
Public Shared Sub Main()
Dim testClassInstance As New TestClass()
' Get the type of testClassInstance.
Dim testType As Type = testClassInstance.GetType()
' Get the IsPublic property of testClassInstance.
Dim isPublic As Boolean = testType.IsPublic
Console.WriteLine("Is {0} public? {1}", testType.FullName, isPublic)
End Sub
End Class
' The example displays the following output:
' Is TestClass public? True
Per le classi annidate, ignorare i risultati di e e prestare attenzione solo IsPublic
ai risultati di e IsNotPublic
IsNestedPublic IsNestedPrivate .
Commenti
Non usare con tipi annidati; In IsNestedPublic alternativa, usare .
Se Type l'oggetto corrente rappresenta un parametro di tipo di un tipo generico, questa proprietà restituisce true
.
TypeAttributes.VisibilityMask seleziona gli attributi di visibilità.