Udostępnij za pośrednictwem


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

Definicja

Pobiera lub ustawia Exception zdarzenie, które wystąpiło podczas odnajdywania określonego adresu URL z pliku DiscoveryExceptionDictionary.

public:
 property Exception ^ default[System::String ^] { Exception ^ get(System::String ^ url); void set(System::String ^ url, Exception ^ value); };
public Exception this[string url] { get; set; }
member this.Item(string) : Exception with get, set
Default Public Property Item(url As String) As Exception

Parametry

url
String

Adres URL dokumentu odnajdywania, który spowodował zgłoszenie wyjątku podczas odnajdywania usług sieci Web XML.

Wartość właściwości

Exception

Wyrzucono Exception odkrycie url.

Wyjątki

url to null.

Przykłady

Exception^ myException = myExceptionDictionary[ myUrlKey ];
Console::WriteLine( " Source : {0}", myException->Source );
Console::WriteLine( " Exception : {0}", myException->Message );
Exception myException = myExceptionDictionary[myUrlKey];
Console.WriteLine(" Source : " + myException.Source);
Console.WriteLine(" Exception : " + myException.Message);
Dim myException As Exception = myExceptionDictionary(myUrlKey)
Console.WriteLine(" Source : " + myException.Source)
Console.WriteLine(" Exception : " + myException.Message)

Dotyczy