DiscoveryExceptionDictionary.Remove(String) Metod
Definition
Viktigt
En del information gäller för förhandsversionen av en produkt och kan komma att ändras avsevärt innan produkten blir allmänt tillgänglig. Microsoft lämnar inga garantier, uttryckliga eller underförstådda, avseende informationen som visas här.
Tar bort en Exception med den angivna URL:en från DiscoveryExceptionDictionary.
public:
void Remove(System::String ^ url);
public void Remove(string url);
member this.Remove : string -> unit
Public Sub Remove (url As String)
Parametrar
- url
- String
URL:en för att Exception ta bort från DiscoveryExceptionDictionary.
Undantag
url är null.
Exempel
// Remove the discovery exception.for the key 'myUrlKey'.
myExceptionDictionary->Remove( myUrlKey );
// Remove the discovery exception.for the key 'myUrlKey'.
myExceptionDictionary.Remove(myUrlKey);
' Remove the discovery exception.for the key 'myUrlKey'.
myExceptionDictionary.Remove(myUrlKey)