When writing an Azure Function in compiled C#/F#, what's the cleanest way to signal to the Function runtime that the function failed?
I know that throwing an exception will result in a failure, but I'd prefer to handle those internally. I've also noticed that when when the function writes to log.Error
the execution is still considered successful.
Is throwing an exception the only way to signal a failure, or is there a better practice?