DiscoveryClientDocumentCollection.Item[String] 属性

定义

从具有指定的 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

要在 DiscoveryClientDocumentCollection 中获取或设置的发现文档的 URL。

属性值

Object

表示已发现并下载到客户端的文档的 Object。 该对象的基础类型可以是 ServiceDescriptionXmlSchemaDiscoveryDocument

例外

url 上声明的默认值为 null

示例

下面的代码示例将输出到控制台中 DiscoveryClientDocumentCollection 具有与变量值匹配的 URL 的 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()))

适用于