Filtering Webhook Subscriptions
Webhook Filter Evaluators
Registering the Filter Service
namespace Example {
public class Startup {
public void ConfigureServices(IServiceCollection services) {
services.AddWebhookNotifier<MyWebhook>(webhooks => {
// Register the filter evaluator service that
// is using the "linq" syntax
webhooks.UseDynamicLinq();
});
}
}
}Evaluating Webhooks
LINQ Filters
Example Filter
Last updated