4 implementations of ThrowOnFailure
AnalyzerRunner (1)
PersistentStorageConfiguration.cs (1)
24
public bool
ThrowOnFailure
=> true;
IdeBenchmarks (1)
SQLitePersistentStorageBenchmark.cs (1)
128
public bool
ThrowOnFailure
=> true;
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Host\PersistentStorage\IPersistentStorageConfiguration.cs (1)
63
public bool
ThrowOnFailure
=> false;
Microsoft.VisualStudio.LanguageServices.CSharp.UnitTests (1)
PersistentStorage\AbstractPersistentStorageTests.cs (1)
1054
public bool
ThrowOnFailure
{ get; }
6 references to ThrowOnFailure
Microsoft.CodeAnalysis.Workspaces (6)
Storage\AbstractPersistentStorageService.cs (4)
46
return NoOpPersistentStorage.GetOrThrow(solutionKey, Configuration.
ThrowOnFailure
);
55
return NoOpPersistentStorage.GetOrThrow(solutionKey, Configuration.
ThrowOnFailure
);
80
return NoOpPersistentStorage.GetOrThrow(solutionKey, Configuration.
ThrowOnFailure
);
103
if (Configuration.
ThrowOnFailure
)
Storage\SQLite\v2\SQLitePersistentStorageService.cs (1)
77
return new(NoOpPersistentStorage.GetOrThrow(solutionKey, Configuration.
ThrowOnFailure
));
Workspace\Host\PersistentStorage\NoOpPersistentStorageService.cs (1)
21
=> configuration.
ThrowOnFailure