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