Skip to content

Commit

Permalink
fix for optional values in controller
Browse files Browse the repository at this point in the history
Signed-off-by: Neil South <[email protected]>
  • Loading branch information
neildsouth committed Sep 6, 2023
1 parent 271158d commit e502a7b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public StowController(IServiceScopeFactory serviceScopeFactory)
[ProducesResponseType(typeof(string), StatusCodes.Status415UnsupportedMediaType)]
[ProducesResponseType(typeof(ProblemDetails), StatusCodes.Status500InternalServerError)]
[ProducesResponseType(typeof(ProblemDetails), StatusCodes.Status507InsufficientStorage)]
public async Task<IActionResult> StoreInstances(string aet = "", string workflowName = "")
public async Task<IActionResult> StoreInstances(string? aet = "", string? workflowName = "")
{
return await StoreInstances(string.Empty, aet, workflowName).ConfigureAwait(false);
}
Expand All @@ -84,12 +84,12 @@ public async Task<IActionResult> StoreInstances(string aet = "", string workflow
[ProducesResponseType(typeof(string), StatusCodes.Status415UnsupportedMediaType)]
[ProducesResponseType(typeof(ProblemDetails), StatusCodes.Status500InternalServerError)]
[ProducesResponseType(typeof(ProblemDetails), StatusCodes.Status507InsufficientStorage)]
public async Task<IActionResult> StoreInstancesToStudy(string studyInstanceUid, string aet = "", string workflowName = "")
public async Task<IActionResult> StoreInstancesToStudy(string? studyInstanceUid, string? aet = "", string? workflowName = "")
{
return await StoreInstances(studyInstanceUid, aet, workflowName).ConfigureAwait(false);
}

private async Task<IActionResult> StoreInstances(string studyInstanceUid, string aet, string workflowName)
private async Task<IActionResult> StoreInstances(string? studyInstanceUid, string? aet, string? workflowName)
{
var correlationId = Guid.NewGuid().ToString();
using var logger = _logger.BeginScope(new LoggingDataDictionary<string, object> { { "CorrelationId", correlationId }, { "StudyInstanceUID", studyInstanceUid }, { "Workflow", workflowName } });

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (Fhir, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (Fhir, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (Fhir, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (Fhir, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomDimseScp, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomDimseScp, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomDimseScp, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomDimseScp, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (HealthLevel7, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (HealthLevel7, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (AcrApi, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (AcrApi, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (HealthLevel7, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (HealthLevel7, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (AcrApi, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (AcrApi, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (Fhir, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (Fhir, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (Fhir, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (Fhir, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (AcrApi, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (AcrApi, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (AcrApi, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (AcrApi, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (HealthLevel7, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (HealthLevel7, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (HealthLevel7, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (HealthLevel7, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomDimseScu, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomDimseScu, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomDimseScu, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomDimseScu, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomWebStow, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomWebStow, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomWebStow, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomWebStow, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomDimseScu, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomDimseScu, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomDimseScu, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomDimseScu, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomWebStow, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomWebStow, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomWebStow, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomWebStow, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomWebExport, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomWebExport, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomWebExport, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomWebExport, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomDimseScp, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomDimseScp, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomDimseScp, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomDimseScp, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomWebExport, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomWebExport, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomWebExport, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (DicomWebExport, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (RemoteAppExecutionPlugIn, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (RemoteAppExecutionPlugIn, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (RemoteAppExecutionPlugIn, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (RemoteAppExecutionPlugIn, mongodb)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (RemoteAppExecutionPlugIn, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (RemoteAppExecutionPlugIn, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (RemoteAppExecutionPlugIn, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / integration-test (RemoteAppExecutionPlugIn, ef)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / analyze

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / analyze

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / analyze

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / analyze

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / docs

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / docs

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / docs

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / docs

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / CodeQL-Analyze

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / CodeQL-Analyze

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / CodeQL-Analyze

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.

Check warning on line 95 in src/InformaticsGateway/Services/Http/DicomWeb/StowController.cs

View workflow job for this annotation

GitHub Actions / CodeQL-Analyze

Possible null reference argument for parameter 'value' in 'void Dictionary<string, object>.Add(string key, object value)'.
Expand Down

0 comments on commit e502a7b

Please sign in to comment.