ModelPropertyClass.GetValue<T> 메서드
Returns the property value.
네임스페이스: Microsoft.SqlServer.Dac.Model
어셈블리: Microsoft.SqlServer.Dac.Extensions(Microsoft.SqlServer.Dac.Extensions.dll)
구문
‘선언
Public Function GetValue(Of T) ( _
instance As TSqlObject _
) As T
‘사용 방법
Dim instance As ModelPropertyClass
Dim instance As TSqlObject
Dim returnValue As T
returnValue = instance.GetValue(instance)
public T GetValue<T>(
TSqlObject instance
)
public:
generic<typename T>
T GetValue(
TSqlObject^ instance
)
member GetValue :
instance:TSqlObject -> 'T
JScript는 제네릭 형식 및 메서드를 지원하지 않습니다.
유형 매개 변수
- T
Type of the property value.
매개 변수
- instance
유형: Microsoft.SqlServer.Dac.Model.TSqlObject
TSqlObject instance to get the property value from.
반환 값
유형: T
Property value.
예외
예외 | 조건 |
---|---|
InvalidCastException | If the property value cannot be cast to T. |