Type.GetProperty メソッド (String, Type, Type )
指定したパブリック プロパティのうち、指定した引数型と一致するパラメータが設定されているものを検索します。
Overloads Public Function GetProperty( _
ByVal name As String, _ ByVal returnType As Type, _ ByVal types() As Type _) As PropertyInfo
[C#]
public PropertyInfo GetProperty(stringname,TypereturnType,Type[] types);
[C++]
public: PropertyInfo* GetProperty(String* name,Type* returnType,Type* types[]);
[JScript]
public function GetProperty(
name : String,returnType : Type,types : Type[]) : PropertyInfo;
パラメータ
name
取得するパブリック プロパティの名前を格納している String 。returnType
プロパティの戻り値の型。types
取得するインデックス付きプロパティに対するパラメータの数値、順序、および型を表す Type オブジェクトの配列。または
インデックス付けされていないプロパティを取得するための、 Type 型の空の配列 (Type[] types = new Type[0])。
戻り値
指定した引数型と一致するパラメータが設定されているパブリック プロパティが存在する場合は、そのパブリック プロパティを表す PropertyInfo オブジェクト。それ以外の場合は null 参照 (Visual Basic では Nothing) 。
例外
例外の種類 | 条件 |
---|---|
AmbiguousMatchException | 指定した名前と、指定した引数型に一致するパラメータを持つプロパティが 2 つ以上存在します。 |
ArgumentNullException | name が null 参照 (Visual Basic では Nothing) です。
または types が null 参照 (Nothing) です。 または types の 1 つの要素が null 参照 (Nothing) です。 |
ArgumentException | types が多次元です。 |
解説
name の検索では大文字と小文字が区別されます。
要求された型がパブリックではなく、呼び出し元に現在のアセンブリ外の非パブリック オブジェクトをリフレクションするための ReflectionPermission がない場合、このメソッドは null 参照 (Visual Basic では Nothing) を返します。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET, Common Language Infrastructure (CLI) Standard
参照
Type クラス | Type メンバ | System 名前空間 | Type.GetProperty オーバーロードの一覧 | PropertyInfo | String | DefaultBinder | ReflectionPermission | GetPropertyImpl | GetProperties