Compartir vía


DiscoveryExceptionDictionary.Item[String] Propiedad

Definición

Obtiene o establece Exception que se produjo durante el detección de la dirección URL desde 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

Parámetros

url
String

Dirección URL del documento de detección que ha hecho que se produzca una excepción durante el proceso de detección de servicios Web XML.

Valor de propiedad

Exception

Exception que se produjo al detectar url.

Excepciones

url es null.

Ejemplos

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)

Se aplica a