다음을 통해 공유


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

속성과 연결된 값입니다.

적용 대상