DiscoveryClientDocumentCollection.Item[String] 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
使用指定的 URL,從 DiscoveryClientDocumentCollection 取得或設定用戶端探索文件物件。
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
探索文件的 URL,要從 DiscoveryClientDocumentCollection 取得或設定。
屬性值
Object,表示已探索和下載至用戶端的文件。 物件的基礎型別可以是 ServiceDescription、XmlSchema 或 DiscoveryDocument。
例外狀況
url
為 null
。
範例
下列程式碼範例會輸出至 主控台, DiscoveryClientDocumentCollection 其中具有符合變數值的 myStringUrl
URL 的 探索檔案類型。
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()))