Type.GetProperty メソッド
現在の Type の特定のプロパティを取得します。
オーバーロードの一覧
指定した名前のパブリック プロパティを検索します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Function GetProperty(String) As PropertyInfo
[JScript] public function GetProperty(String) : PropertyInfo;
指定したバインディング制約を使用して、指定したプロパティを検索します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Overridable Function GetProperty(String, BindingFlags) As PropertyInfo Implements IReflect.GetProperty
[C#] public virtual PropertyInfo GetProperty(string, BindingFlags);
[C++] public: virtual PropertyInfo* GetProperty(String*, BindingFlags);
[JScript] public function GetProperty(String, BindingFlags) : PropertyInfo;
指定した名前および戻り値の型を持つパブリック プロパティを検索します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Function GetProperty(String, Type) As PropertyInfo
[JScript] public function GetProperty(String, Type) : PropertyInfo;
指定したパブリック プロパティのうち、指定した引数型と一致するパラメータが設定されているものを検索します。
[Visual Basic] Overloads Public Function GetProperty(String, Type()) As PropertyInfo
[JScript] public function GetProperty(String, Type[]) : PropertyInfo;
指定したパブリック プロパティのうち、指定した引数型と一致するパラメータが設定されているものを検索します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Function GetProperty(String, Type, Type()) As PropertyInfo
[C++] public: PropertyInfo* GetProperty(String*, Type*, Type[]);
[JScript] public function GetProperty(String, Type, Type[]) : PropertyInfo;
指定したパブリック プロパティのうち、指定した引数の型および修飾子と一致するパラメータが設定されているものを検索します。
.NET Compact Framework でもサポート。
[Visual Basic] Overloads Public Function GetProperty(String, Type, Type(), ParameterModifier()) As PropertyInfo
[C#] public PropertyInfo GetProperty(string, Type, Type[], ParameterModifier[]);
[C++] public: PropertyInfo* GetProperty(String*, Type*, Type[], ParameterModifier[]);
[JScript] public function GetProperty(String, Type, Type[], ParameterModifier[]) : PropertyInfo;
指定したバインディング制約を使用して、指定した引数の型および修飾子と一致するパラメータが設定された指定のプロパティを検索します。
.NET Compact Framework でもサポート。
使用例
[Visual Basic, C#, C++] MyPropertyClass に対応する Type オブジェクトを取得し、 GetProperty メソッドに渡される引数を使用して、このクラスのインデックス付きプロパティを取得する例を次に示します。
[Visual Basic, C#, C++] メモ ここでは、GetProperty のオーバーロード形式のうちの 1 つだけについて、使用例を示します。その他の例については、各オーバーロード形式のトピックを参照してください。
Imports System
Imports System.Reflection
Public Class MyPropertyClass
Private myPropertyArray(9, 9) As Integer
' Declare an indexer.
Default Public Property Item(ByVal i As Integer, ByVal j As Integer) As Integer
Get
Return myPropertyArray(i, j)
End Get
Set(ByVal Value As Integer)
myPropertyArray(i, j) = Value
End Set
End Property
End Class 'MyPropertyClass
Public Class MyTypeClass
Public Shared Sub Main()
Try
Dim myType As Type = GetType(MyPropertyClass)
Dim myTypeArray(1) As Type
' Create an instance of a Type array representing the number, order
' and type of the parameters for the property.
myTypeArray.SetValue(GetType(Integer), 0)
myTypeArray.SetValue(GetType(Integer), 1)
' Search for the indexed property whose parameters match the
' specified argument types and modifiers.
Dim myPropertyInfo As PropertyInfo = myType.GetProperty("Item", _
GetType(Integer), myTypeArray, Nothing)
Console.WriteLine(myType.FullName + "." + myPropertyInfo.Name + _
" has a property type of " + myPropertyInfo.PropertyType.ToString())
Catch ex As Exception
Console.WriteLine("An exception occurred " + ex.Message.ToString())
End Try
End Sub 'Main
End Class 'MyTypeClass
[C#]
using System;
using System.Reflection;
public class MyPropertyClass
{
private int [,] myPropertyArray = new int[10,10];
// Declare an indexer.
public int this [int i,int j]
{
get
{
return myPropertyArray[i,j];
}
set
{
myPropertyArray[i,j] = value;
}
}
}
public class MyTypeClass
{
public static void Main()
{
try
{
Type myType=typeof(MyPropertyClass);
Type[] myTypeArray = new Type[2];
// Create an instance of the Type array representing the number, order
// and type of the parameters for the property.
myTypeArray.SetValue(typeof(int),0);
myTypeArray.SetValue(typeof(int),1);
// Search for the indexed property whose parameters match the
// specified argument types and modifiers.
PropertyInfo myPropertyInfo = myType.GetProperty("Item",
typeof(int),myTypeArray,null);
Console.WriteLine(myType.FullName + "." + myPropertyInfo.Name +
" has a property type of " + myPropertyInfo.PropertyType);
}
catch(Exception ex)
{
Console.WriteLine("An exception occurred " + ex.Message);
}
}
}
[C++]
#using <mscorlib.dll>
using namespace System;
using namespace System::Reflection;
public __gc class MyPropertyClass {
private:
int myPropertyArray[,];
// Declare an indexer.
public:
__property int get_Item(int i, int j) {
return myPropertyArray[i, j];
}
__property void set_Item(int i, int j, int value) {
myPropertyArray[i, j] = value;
}
};
int main() {
try {
Type* myType=__typeof(MyPropertyClass);
Type* myTypeArray[] = new Type*[2];
// Create an instance of the Type array representing the number, order
// and type of the parameters for the property.
myTypeArray->SetValue(__typeof(int), 0);
myTypeArray->SetValue(__typeof(int), 1);
// Search for the indexed property whose parameters match the
// specified argument types and modifiers.
PropertyInfo* myPropertyInfo = myType->GetProperty(S"Item",
__typeof(int), myTypeArray, 0);
Console::WriteLine(S"{0}.{1} has a property type of {2}", myType->FullName,
myPropertyInfo->Name, myPropertyInfo->PropertyType);
} catch (Exception* ex) {
Console::WriteLine(S"An exception occurred {0}", ex->Message);
}
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。