4 implementations of ThrowOnFailure
AnalyzerRunner (1)
PersistentStorageConfiguration.cs (1)
25
public bool
ThrowOnFailure
=> true;
IdeBenchmarks (1)
SQLitePersistentStorageBenchmark.cs (1)
131
public bool
ThrowOnFailure
=> true;
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Host\PersistentStorage\IPersistentStorageConfiguration.cs (1)
64
public bool
ThrowOnFailure
=> false;
Microsoft.VisualStudio.LanguageServices.CSharp.UnitTests (1)
PersistentStorage\AbstractPersistentStorageTests.cs (1)
1062
public bool
ThrowOnFailure
=> _throwOnFailure;
6 references to ThrowOnFailure
Microsoft.CodeAnalysis.Workspaces (6)
Storage\AbstractPersistentStorageService.cs (4)
47
? new(NoOpPersistentStorage.GetOrThrow(Configuration.
ThrowOnFailure
))
65
return NoOpPersistentStorage.GetOrThrow(Configuration.
ThrowOnFailure
);
111
return NoOpPersistentStorage.GetOrThrow(Configuration.
ThrowOnFailure
);
133
if (Configuration.
ThrowOnFailure
)
Storage\SQLite\v2\SQLitePersistentStorageService.cs (1)
108
return new(NoOpPersistentStorage.GetOrThrow(Configuration.
ThrowOnFailure
));
Workspace\Host\PersistentStorage\NoOpPersistentStorageService.cs (1)
21
=> configuration.
ThrowOnFailure