Type.IsPublic Свойство

Определение

Возвращает значение, позволяющее определить, был ли объект Type объявлен как открытый.

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

Значение свойства

Boolean

Значение true, если объект Type объявлен как открытый и не является вложенным типом; в противном случае — значение false.

Реализации

Примеры

В следующем примере создается экземпляр MyTestClass , проверяется наличие IsPublic Свойства и отображается результат.

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

Для вложенных классов игнорируйте результаты IsPublic и IsNotPublic и обратите внимание только на результаты IsNestedPublic и IsNestedPrivate .

Комментарии

Не используйте с вложенными типами. IsNestedPublic вместо этого используйте.

Если Current Type представляет параметр типа универсального типа, это свойство возвращает значение true .

TypeAttributes.VisibilityMask выбирает атрибуты видимости.

Применяется к

См. также раздел