Localizable.GetValue メソッド

定義

プロパティの値を取得します。

オーバーロード

GetValue()

既定のプロパティ値を持つプロパティの値を取得します。

GetValue(Type)

指定された型の型を取得します。

GetValue<T>()

プロパティに関連付けられている値を取得します。

GetValue()

既定のプロパティ値を持つプロパティの値を取得します。

public:
 System::Object ^ GetValue();
public object GetValue ();
member this.GetValue : unit -> obj
Public Function GetValue () As Object

戻り値

プロパティの値。

適用対象

GetValue(Type)

指定された型の型を取得します。

public:
 System::Object ^ GetValue(Type ^ targetType);
public object GetValue (Type targetType);
member this.GetValue : Type -> obj
Public Function GetValue (targetType As Type) As Object

パラメーター

targetType
Type

このスタイルの対象となる型。

戻り値

指定された値を持つ型。

適用対象

GetValue<T>()

プロパティに関連付けられている値を取得します。

public:
generic <typename T>
 T GetValue();
public T GetValue<T> ();
member this.GetValue : unit -> 'T
Public Function GetValue(Of T) () As T

型パラメーター

T

ジェネリック オブジェクト値。

戻り値

T

プロパティに関連付けられている値。

適用対象