Type.IsPublic Eigenschaft

Definition

Ruft einen Wert ab, der angibt, ob der Type als öffentlich deklariert ist.

public:
 property bool IsPublic { bool get(); };
public bool IsPublic { get; }
member this.IsPublic : bool
Public ReadOnly Property IsPublic As Boolean

Eigenschaftswert

true, wenn der Type als öffentlich deklariert und kein geschachtelter Typ ist, andernfalls false.

Implementiert

Beispiele

Im folgenden Beispiel wird eine Instanz von MyTestClasserstellt, nach der IsPublic -Eigenschaft gesucht und das Ergebnis angezeigt.

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
type TestClass() = class end

let testClassInstance = TestClass()
// Get the type of myTestClassInstance.
let testType = testClassInstance.GetType()
// Get the IsPublic property of testClassInstance.
let isPublic = testType.IsPublic
printfn $"Is {testType.FullName} public? {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

Ignorieren Sie bei geschachtelten Klassen die Ergebnisse von IsPublic und IsNotPublic , und achten Sie nur auf die Ergebnisse von IsNestedPublic und IsNestedPrivate.

Hinweise

Verwenden Sie nicht mit geschachtelten Typen. stattdessen verwenden IsNestedPublic .

Wenn der aktuelle einen Typparameter eines generischen Type Typs darstellt, gibt diese Eigenschaft zurück true.

TypeAttributes.VisibilityMask wählt die Sichtbarkeitsattribute aus.

Gilt für:

Weitere Informationen