ASP.NET Action
last modified April 3, 2025
In this article, we explore the Action delegate in ASP.NET 8. Action is a built-in delegate type that simplifies method encapsulation and invocation.
ASP.NET is a cross-platform, high-performance framework for building modern web applications. The Action delegate is commonly used for callbacks and event handlers.
Basic Definition
The Action delegate in .NET represents a method that takes parameters but does not return a value. It's part of the System namespace and comes in generic variants.
Action can encapsulate methods with up to 16 parameters. The non-generic Action
delegate represents a method with no parameters, while Action
In ASP.NET, Action delegates are often used in middleware, request pipelines, and for defining inline methods. They provide flexibility in method invocation.
ASP.NET Action Example
The following example demonstrates using Action delegates in an ASP.NET 8 application.
var builder = WebApplication.CreateBuilder(args); // Register a service that uses Action builder.Services.AddSingleton<NotificationService>(); builder.Services.AddTransient<EmailNotifier>(); builder.Services.AddTransient<SmsNotifier>(); var app = builder.Build(); // Middleware using Action app.Use(async (context, next) => { var logger = context.RequestServices.GetRequiredService<ILogger<Program>>(); logger.LogInformation("Request started at {Time}", DateTime.Now); // Action as a callback Action<string> logAction = message => logger.LogInformation("Middleware log: {Message}", message); logAction("Processing request..."); await next.Invoke(); logAction("Request completed"); }); app.MapGet("/notify", (NotificationService service) => { // Using Action as parameter service.SendNotification("Important system update", notifier => { notifier.Notify("Admin", "Notification sent via callback"); }); return "Notification processed"; }); app.Run();
This sets up an ASP.NET application demonstrating Action usage in middleware and services. The middleware shows Action as a callback for logging purposes.
public class NotificationService { private readonly EmailNotifier _emailNotifier; private readonly SmsNotifier _smsNotifier; public NotificationService(EmailNotifier emailNotifier, SmsNotifier smsNotifier) { _emailNotifier = emailNotifier; _smsNotifier = smsNotifier; } public void SendNotification(string message, Action<INotifier> callback) { // Process notification Console.WriteLine($"Sending notification: {message}"); // Use Action callback callback(_emailNotifier); callback(_smsNotifier); Console.WriteLine("Notification processing complete"); } } public interface INotifier { void Notify(string recipient, string message); } public class EmailNotifier : INotifier { public void Notify(string recipient, string message) { Console.WriteLine($"Email to {recipient}: {message}"); } } public class SmsNotifier : INotifier { public void Notify(string recipient, string message) { Console.WriteLine($"SMS to {recipient}: {message}"); } }
This service demonstrates using Action as a method parameter. The SendNotification method accepts a message and an Action delegate that operates on an INotifier.
The callback Action is invoked twice - once with EmailNotifier and once with SmsNotifier. This shows how Actions can encapsulate different behaviors.
The example illustrates several Action use cases: as middleware callbacks, as method parameters for flexible behavior, and with interface implementations.
Source
Microsoft Action Delegate Documentation
In this article, we have explored the Action delegate in ASP.NET 8. This versatile feature enables flexible method encapsulation and callback scenarios.
Author
List all ASP.NET tutorials.