DiscoveryExceptionDictionary.Remove(String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从中删除具有指定 URL 的Exception一个 DiscoveryExceptionDictionary 。
public:
void Remove(System::String ^ url);
public void Remove(string url);
member this.Remove : string -> unit
Public Sub Remove (url As String)
参数
- url
- String
要从中删除的 ExceptionDiscoveryExceptionDictionaryURL。
例外
url 是 null。
示例
// 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)