Udostępnij za pośrednictwem


DiscoveryClientDocumentCollection.Item[String] Właściwość

Definicja

Pobiera lub ustawia obiekt dokumentu odnajdywania klienta z DiscoveryClientDocumentCollection określonego adresu 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

Parametry

url
String

Adres URL dokumentu odnajdywania do pobrania lub ustawienia z elementu DiscoveryClientDocumentCollection.

Wartość właściwości

Object

Reprezentacja Object odnalezionego i pobranego dokumentu do klienta. Bazowym typem ServiceDescriptionobiektu może być , XmlSchemalub DiscoveryDocument.

Wyjątki

url to null.

Przykłady

Poniższy przykładowy kod wyprowadza do konsoli typ dokumentu odnajdywania w DiscoveryClientDocumentCollection obiekcie, który ma adres URL pasujący do wartości zmiennej 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()))

Dotyczy