1 implementation of CanHandleException
Microsoft.CodeAnalysis.Workspaces (1)
ExtensionManager\AbstractExtensionManager.cs (1)
34public virtual bool CanHandleException(object provider, Exception exception)
6 references to CanHandleException
Microsoft.CodeAnalysis.Features (2)
QuickInfo\QuickInfoServiceWithProviders.cs (2)
73catch (Exception e) when (extensionManager.CanHandleException(provider, e)) 106catch (Exception e) when (extensionManager.CanHandleException(provider, e))
Microsoft.CodeAnalysis.Workspaces (4)
ExtensionManager\IExtensionManagerExtensions.cs (4)
32catch (Exception e) when (extensionManager.CanHandleException(extension, e)) 55catch (Exception e) when (extensionManager.CanHandleException(extension, e)) 80catch (Exception e) when (extensionManager.CanHandleException(extension, e)) 105catch (Exception e) when (!(e is OperationCanceledException) && extensionManager.CanHandleException(extension, e))