DiscoveryClientDocumentCollection.Item[String] プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
DiscoveryClientDocumentCollection から、指定した URL を持つクライアント側の探索ドキュメント オブジェクトを取得または設定します。
public:
property System::Object ^ default[System::String ^] { System::Object ^ get(System::String ^ url); void set(System::String ^ url, System::Object ^ value); };
public object this[string url] { get; set; }
member this.Item(string) : obj with get, set
Default Public Property Item(url As String) As Object
パラメーター
- url
- String
DiscoveryClientDocumentCollection から取得または設定する探索ドキュメントの URL。
プロパティ値
探索されクライアントにダウンロードされたドキュメントを表す Object。 このオブジェクトの基になる型は、ServiceDescription、XmlSchema、または DiscoveryDocument です。
例外
url
は null
です。
例
次のコード例では、変数の値に一致する URL を持つ探索ドキュメント DiscoveryClientDocumentCollection の種類をコンソールに myStringUrl
出力します。
Object^ myObject = myDiscoveryClientDocumentCollection[ myStringUrl ];
Console::WriteLine( "Object representing the Url : {0}", myObject );
object myObject = myDiscoveryClientDocumentCollection[myStringUrl];
Console.WriteLine("Object representing the Url : " + myObject.ToString());
Dim myObject As Object = myDiscoveryClientDocumentCollection(myStringUrl)
Console.WriteLine(("Object representing the Url : " + myObject.ToString()))