
Co-authored-by: Amélie Renard <44666826+amelie-renard-sonarsource@users.noreply.github.com>
8 lines
189 B
Plaintext
8 lines
189 B
Plaintext
[source,vbnet]
|
|
----
|
|
Public Function GetReadableStatus(job As Job) As String
|
|
If job.IsRunning Then Return "Running"
|
|
Return If(job.HasErrors, "Failed", "Succeeded")
|
|
End Function
|
|
----
|