DiscoveryExceptionDictionary.Add(String, Exception) Método
Definição
Adiciona uma Exception com uma chave de url à DiscoveryExceptionDictionary.Adds an Exception with a key of url to the 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)
Parâmetros
- url
- String
A URL que causou uma exceção durante a descoberta de serviços Web em XML.The URL that caused an exception during XML Web services discovery.
- value
- Exception
A Exception que ocorreu durante a descoberta de serviços Web em XML.The Exception that occurred during XML Web services discovery.
Exceções
url é null.url is null.
Uma entrada com uma chave url já existe no DiscoveryExceptionDictionary.An entry with a key of url already exists in the DiscoveryExceptionDictionary.
Exemplos
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