Checkbox change event calling awaited method

Hi

I need to catch the change event of a Radzen checkbox and then call a method that is async. For that reason I can't use a backing variable because I can't await method calls in the setter.

Any ideas how I could approach this?

Thanks,
Kevin

You can assign async Task as Change event handler in the same way you can assign plain void.

Hi Enchev,

I got confused here. My mistake.

Thanks