Securing AI Features in ASP.NET Core
Prompt injection, data leakage, and tool abuse in real .NET applications

Search for a command to run...
Articles tagged with #microsoft
Prompt injection, data leakage, and tool abuse in real .NET applications

The Claude API is no longer something .NET teams need to wrap by hand. Anthropic now publishes an official C# SDK through the Anthropic NuGet package, and the SDK gives .NET applications a typed way t

MQTT looks simple at first. The basic model is easy to understand, but the architectural choice on Azure is not just about whether Azure can accept MQTT traffic. It is about what kind of system you ar

Caching is one of those topics that sounds simple until you have to use it in a real system. At first it looks easy. Put the thing in memory. Read it back later. Save a database call. Job done. Then r

Dependency injection in .NET looks simple at first. You register a service, inject an interface, and move on. builder.Services.AddScoped<IOrderService, OrderService>(); That is the easy part. The har

Idempotency is not a MediatR feature. Its not a pipeline behaviour. Its not a middleware trick. In a distributed system, idempotency is a consistency guarantee around a side effect. That guarantee bel
