Udostępnij za pośrednictwem


DiscoveryExceptionDictionary.Add(String, Exception) Metoda

Definicja

Dodaje element Exception z kluczem url do elementu DiscoveryExceptionDictionary.

public:
 void Add(System::String ^ url, Exception ^ value);
public void Add (string url, Exception value);
member this.Add : string * Exception -> unit
Public Sub Add (url As String, value As Exception)

Parametry

url
String

Adres URL, który spowodował wyjątek podczas odnajdywania usług sieci Web XML.

value
Exception

Wystąpił Exception podczas odnajdywania usług sieci Web XML.

Wyjątki

url to null.

Wpis o kluczu url już istnieje w pliku DiscoveryExceptionDictionary.

Przykłady

DiscoveryExceptionDictionary^ myNewExceptionDictionary = gcnew DiscoveryExceptionDictionary;

// Add an exception with the custom error message.
Exception^ myNewException = gcnew Exception( "The requested service is not available." );
myNewExceptionDictionary->Add( myUrlKey, myNewException );
myExceptionDictionary = myNewExceptionDictionary;
DiscoveryExceptionDictionary myNewExceptionDictionary =
                           new DiscoveryExceptionDictionary();
// Add an exception with the custom error message.
Exception myNewException =
     new Exception("The requested service is not available.");
myNewExceptionDictionary.Add(myUrlKey, myNewException);
myExceptionDictionary = myNewExceptionDictionary;
Dim myNewExceptionDictionary As New DiscoveryExceptionDictionary()
' Add an exception with the custom error message.
Dim myNewException As New Exception("The requested service is not available.")
myNewExceptionDictionary.Add(myUrlKey, myNewException)
myExceptionDictionary = myNewExceptionDictionary

Dotyczy

Zobacz też