SearchResult.Properties プロパティ
オブジェクトに設定されたプロパティの ResultPropertyCollection を取得します。
Public ReadOnly Property Properties As ResultPropertyCollection
[C#]
public ResultPropertyCollection Properties {get;}
[C++]
public: __property ResultPropertyCollection* get_Properties();
[JScript]
public function get Properties() : ResultPropertyCollection;
プロパティ値
オブジェクトに設定されたプロパティの ResultPropertyCollection 。
解説
このコレクションは、 DirectorySearcher.PropertiesToLoad を通じて明示的に要求されたプロパティだけを格納します。
使用例
[Visual Basic, C#, C++] この例は、 SearchResult の例を実装していることを前提にしています。元のサンプルは、検索条件を持つ新しい DirectoryEntry を作成し、 FindOne メソッドを使用して検索を実行します。検索結果は GetDirectoryEntry に格納されます。検索結果は後でここから取り出され、解析されます。
[Visual Basic, C#, C++] この例は、検索結果を ResultPropertyCollection に格納します。次に、各プロパティをコンソール ウィンドウに表示します。
' Get the properties of the 'mySearchResult'.
Dim myResultPropColl As ResultPropertyCollection
myResultPropColl = mySearchResult.Properties
Console.WriteLine("The properties of the 'mySearchResult' are :")
Dim myKey As String
For Each myKey In myResultPropColl.PropertyNames
Dim tab1 As String = " "
Console.WriteLine(myKey + " = ")
Dim myCollection As Object
For Each myCollection In myResultPropColl(myKey)
Console.WriteLine(tab1 + myCollection)
Next myCollection
Next myKey
[C#]
// Get the properties of the 'mySearchResult'.
ResultPropertyCollection myResultPropColl;
myResultPropColl = mySearchResult.Properties;
Console.WriteLine("The properties of the " +
"'mySearchResult' are :");
foreach( string myKey in myResultPropColl.PropertyNames)
{
string tab = " ";
Console.WriteLine(myKey + " = ");
foreach( Object myCollection in myResultPropColl[myKey])
{
Console.WriteLine(tab + myCollection);
}
}
[C++]
// Get the properties of the 'mySearchResult'.
ResultPropertyCollection* myResultPropColl = mySearchResult->Properties;
Console::WriteLine(S"The properties of the 'mySearchResult' are :");
IEnumerator* myEnum = myResultPropColl->PropertyNames->GetEnumerator();
while (myEnum->MoveNext()) {
String* myKey = __try_cast<String*>(myEnum->Current);
Console::WriteLine(S"{0} = ", myKey);
IEnumerator* myEnum = myResultPropColl->Item[myKey]->GetEnumerator();
while (myEnum->MoveNext()) {
Console::WriteLine(S"\t{0}", myEnum->Current);
}
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
.NET Framework セキュリティ:
- 直前の呼び出し元の完全信頼。このメンバは、部分的に信頼されているコードから使用することはできません。詳細の参照先 : 部分信頼コードからのライブラリの使用
参照
SearchResult クラス | SearchResult メンバ | System.DirectoryServices 名前空間 | ResultPropertyCollection