Files
Wino-Mail/Wino.Mail.WinUI/Activation/ActivationHandler.cs
T

40 lines
1.1 KiB
C#
Raw Normal View History

2025-11-15 14:52:01 +01:00
using System.Threading.Tasks;
namespace Wino.Activation;
public abstract class ActivationHandler
{
public abstract bool CanHandle(object args);
public abstract Task HandleAsync(object args);
}
// Extend this class to implement new ActivationHandlers
public abstract class ActivationHandler<T> : ActivationHandler
where T : class
{
// Override this method to add the activation logic in your activation handler
protected abstract Task HandleInternalAsync(T args);
public override async Task HandleAsync(object args)
{
if (args is T typedArgs)
{
await HandleInternalAsync(typedArgs);
}
2025-11-15 14:52:01 +01:00
}
public override bool CanHandle(object args)
{
// CanHandle checks the args is of type you have configured
return args is T typedArgs && CanHandleInternal(typedArgs);
2025-11-15 14:52:01 +01:00
}
// You can override this method to add extra validation on activation args
// to determine if your ActivationHandler should handle this activation args
protected virtual bool CanHandleInternal(T args)
{
return true;
}
}