Skip to content

Instantly share code, notes, and snippets.

@cemdogan
cemdogan / WeatherForecastController.cs
Last active December 12, 2021 23:22
WeatherForecastController
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Contracts;
using MassTransit;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
using OpenTracing;
using OpenTracing.Propagation;
@cemdogan
cemdogan / Cacheability.cs
Created August 31, 2018 07:24 — forked from bradwilson/Cacheability.cs
Using chaining to create cached results in ASP.NET Web API v2
public enum Cacheability
{
NoCache,
Private,
Public,
}