SymbolResolver.Remove Méthode
Définition
Supprime le symbole spécifié de SymbolResolver.Removes the specified symbol from the SymbolResolver.
Surcharges
Remove(KeyValuePair<String,Object>) |
Supprime le symbole spécifié de SymbolResolver.Removes the specified symbol from the SymbolResolver. |
Remove(String) |
Supprime un symbole de SymbolResolver en utilisant la clé spécifiée.Removes a symbol from the SymbolResolver using a specified key. |
Remove(KeyValuePair<String,Object>)
Supprime le symbole spécifié de SymbolResolver.Removes the specified symbol from the SymbolResolver.
public:
virtual bool Remove(System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^> item);
public bool Remove (System.Collections.Generic.KeyValuePair<string,object> item);
abstract member Remove : System.Collections.Generic.KeyValuePair<string, obj> -> bool
override this.Remove : System.Collections.Generic.KeyValuePair<string, obj> -> bool
Public Function Remove (item As KeyValuePair(Of String, Object)) As Boolean
Paramètres
- item
- KeyValuePair<String,Object>
Symbole à supprimer.The symbol to remove.
Retours
true
si la recherche et la suppression du symbole réussissent ; sinon, false
.true
if the symbol is successfully found and removed; otherwise, false
. Cette méthode retourne false
si le symbole n'est pas présent.This method returns false
if the symbol is not present.
Implémente
Remove(String)
Supprime un symbole de SymbolResolver en utilisant la clé spécifiée.Removes a symbol from the SymbolResolver using a specified key.
public:
virtual bool Remove(System::String ^ key);
public bool Remove (string key);
abstract member Remove : string -> bool
override this.Remove : string -> bool
Public Function Remove (key As String) As Boolean
Paramètres
- key
- String
Clé du symbole à supprimer.The key of the symbol to remove.
Retours
true
si la recherche et la suppression du symbole réussissent ; sinon, false
.true
if the symbol is successfully found and removed; otherwise, false
. Cette méthode retourne false
si le symbole n'est pas présent.This method returns false
if the symbol is not present.