Azure Functions .NET Core Samples

Explore practical examples and patterns for building serverless applications with Azure Functions and .NET Core.

HTTP Trigger Sample

HTTP Trigger Function

Learn how to create an Azure Function that responds to HTTP requests. Ideal for building APIs and webhooks.

HTTP REST API .NET Core
Queue Trigger Sample

Queue Trigger Function

Process messages from Azure Storage Queues asynchronously. Perfect for background processing and task queues.

Queue Async Background Job
Blob Trigger Sample

Blob Trigger Function

React to changes in Azure Blob Storage, such as file uploads or modifications. Useful for image processing or data ingestion.

Blob Storage File Processing Event-Driven
Timer Trigger Sample

Timer Trigger Function

Execute functions on a schedule using cron expressions. Great for scheduled tasks, reporting, and recurring maintenance.

Timer Scheduled Task Cron
Cosmos DB Sample

Cosmos DB Integration

Interact with Azure Cosmos DB for data storage and retrieval. Covers input and output bindings for NoSQL data.

Cosmos DB NoSQL Data Storage
Durable Functions Sample

Durable Functions Orchestration

Build stateful serverless workflows with Durable Functions. Manage complex orchestrations and fan-out/fan-in patterns.

Durable Functions Orchestration Workflow