PropertyCollection クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
DataColumn、DataSet、または DataTable に追加できるプロパティのコレクションを表します。
public ref class PropertyCollection : System::Collections::Hashtable
public ref class PropertyCollection : System::Collections::Hashtable, ICloneable
public class PropertyCollection : System.Collections.Hashtable
public class PropertyCollection : System.Collections.Hashtable, ICloneable
[System.Serializable]
public class PropertyCollection : System.Collections.Hashtable
type PropertyCollection = class
inherit Hashtable
interface ICloneable
type PropertyCollection = class
inherit Hashtable
[<System.Serializable>]
type PropertyCollection = class
inherit Hashtable
Public Class PropertyCollection
Inherits Hashtable
Public Class PropertyCollection
Inherits Hashtable
Implements ICloneable
- 継承
- 属性
- 実装
例
次の例では、 のタイムスタンプ値を DataTable 作成し、 に追加します PropertyCollection。
private void AddTimeStamp()
{
//Create a new DataTable.
DataTable table = new DataTable("NewTable");
//Get its PropertyCollection.
PropertyCollection properties = table.ExtendedProperties;
//Add a timestamp value to the PropertyCollection.
properties.Add("TimeStamp", DateTime.Now);
// Print the timestamp.
Console.WriteLine(properties["TimeStamp"]);
}
Private Sub AddTimeStamp()
'Create a new DataTable.
Dim table As New DataTable("NewTable")
'Get its PropertyCollection.
Dim properties As PropertyCollection = table.ExtendedProperties
'Add a timestamp value to the PropertyCollection.
properties.Add("TimeStamp", DateTime.Now)
'Print the timestamp.
Console.WriteLine(properties("TimeStamp"))
End Sub
注釈
にはPropertyCollection、または DataTable クラスの プロパティをDataColumnDataSet使用してExtendedProperties
アクセスできます。
を使用して、DataColumn、、または DataTable オブジェクトにカスタム プロパティを追加しますPropertyCollectionDataSet。 たとえば、後で別のオブジェクトと比較するために、オブジェクトの作成時刻を格納できます。
コンストラクター
PropertyCollection() |
PropertyCollection クラスの新しいインスタンスを初期化します。 |
PropertyCollection(SerializationInfo, StreamingContext) |
古い.
PropertyCollection クラスの新しいインスタンスを初期化します。 |
プロパティ
comparer |
古い.
古い.
IComparer で使用する Hashtable を取得または設定します。 (継承元 Hashtable) |
Count |
Hashtable に格納されているキー/値ペアの数を取得します。 (継承元 Hashtable) |
EqualityComparer |
IEqualityComparer に使用する Hashtable を取得します。 (継承元 Hashtable) |
hcp |
古い.
古い.
ハッシュ コードを提供できるオブジェクトを取得または設定します。 (継承元 Hashtable) |
IsFixedSize |
Hashtable が固定サイズかどうかを示す値を取得します。 (継承元 Hashtable) |
IsReadOnly |
Hashtable が読み取り専用かどうかを示す値を取得します。 (継承元 Hashtable) |
IsSynchronized |
Hashtable へのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。 (継承元 Hashtable) |
Item[Object] |
指定されたキーに関連付けられている値を取得または設定します。 (継承元 Hashtable) |
Keys |
Hashtable 内のキーを格納している ICollection を取得します。 (継承元 Hashtable) |
SyncRoot |
Hashtable へのアクセスを同期するために使用できるオブジェクトを取得します。 (継承元 Hashtable) |
Values |
ICollection 内の値を格納している Hashtable を取得します。 (継承元 Hashtable) |
メソッド
明示的なインターフェイスの実装
IEnumerable.GetEnumerator() |
コレクションを反復処理する列挙子を返します。 (継承元 Hashtable) |
拡張メソッド
Cast<TResult>(IEnumerable) |
IEnumerable の要素を、指定した型にキャストします。 |
OfType<TResult>(IEnumerable) |
指定された型に基づいて IEnumerable の要素をフィルター処理します。 |
AsParallel(IEnumerable) |
クエリの並列化を有効にします。 |
AsQueryable(IEnumerable) |
IEnumerable を IQueryable に変換します。 |
適用対象
こちらもご覧ください
.NET