Skip to content

Instantly share code, notes, and snippets.

@CarterTsai
Created February 16, 2020 02:40
Show Gist options
  • Save CarterTsai/f9fd74812029ae529c4c9aee17dd9452 to your computer and use it in GitHub Desktop.
Save CarterTsai/f9fd74812029ae529c4c9aee17dd9452 to your computer and use it in GitHub Desktop.
aop using
using System;
namespace aoptest
{
class Program
{
static void Main(string[] args)
{
var decoratedAPI = LoggerDecorator<IHttpApi>.Create(new HttpApi());
decoratedAPI.Get("https://www.google.com");
decoratedAPI.Post("https://www.google.com", new {ProductID = "A123456", ProductName = "Test"});
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment