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 してください。

現在のが Type ジェネリック型の型パラメーターを表している場合、このプロパティはを返し true ます。

TypeAttributes.VisibilityMask 可視性属性を選択します。

適用対象

こちらもご覧ください