Open
Description
Description of the false positive
The alert is generated from the following snippet:
EnsureArg.IsNotNull(bundleConfiguration?.Value, nameof(bundleConfiguration));
// ...
_bundleConfiguration = bundleConfiguration.Value;
EnsureArg
is a third party library used to check arguments. Here, because of the null-conditional, bundleConfiguration
and bundleConfiguration.Value
are guarded against nulls in this case.