DataTable.ExtendedProperties 속성
사용자 지정 사용자 정보 컬렉션을 가져옵니다.
네임스페이스: System.Data
어셈블리: System.Data(system.data.dll)
구문
‘선언
Public ReadOnly Property ExtendedProperties As PropertyCollection
‘사용 방법
Dim instance As DataTable
Dim value As PropertyCollection
value = instance.ExtendedProperties
public PropertyCollection ExtendedProperties { get; }
public:
property PropertyCollection^ ExtendedProperties {
PropertyCollection^ get ();
}
/** @property */
public PropertyCollection get_ExtendedProperties ()
public function get ExtendedProperties () : PropertyCollection
속성 값
사용자 지정 사용자 정보가 들어 있는 PropertyCollection입니다.
설명
ExtendedProperties를 사용하여 사용자 지정 정보를 DataTable에 추가합니다. Add 메서드를 사용하여 정보를 추가합니다. Item 메서드를 사용하여 정보를 검색합니다.
확장 속성은 String 형식이어야 합니다. String 형식이 아닌 속성은 DataTable을 XML로 쓸 때 유지되지 않습니다.
예제
다음 예제에서는 ExtendedProperties 속성을 통해 DataTable에 타임스탬프 값을 추가합니다.
Private Sub GetAndSetExtendedProperties(ByVal myTable As DataTable)
' Add an item to the collection.
myTable.ExtendedProperties.Add("TimeStamp", DateTime.Now)
' Print the item.
Console.WriteLine(myTable.ExtendedProperties.Item("TimeStamp"))
End Sub
private void GetAndSetExtendedProperties(DataTable myTable){
// Add an item to the collection.
myTable.ExtendedProperties.Add("TimeStamp", DateTime.Now);
// Print the item.
Console.WriteLine(myTable.ExtendedProperties["TimeStamp"]);
}
플랫폼
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
2.0, 1.1, 1.0에서 지원
.NET Compact Framework
2.0, 1.0에서 지원
참고 항목
참조
DataTable 클래스
DataTable 멤버
System.Data 네임스페이스