Skip to content

Instantly share code, notes, and snippets.

@sachatrauwaen
Created July 12, 2014 22:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sachatrauwaen/39e4f336d9f4f24d6481 to your computer and use it in GitHub Desktop.
Save sachatrauwaen/39e4f336d9f4f24d6481 to your computer and use it in GitHub Desktop.
using Satrabel.OpenBlocks.Token;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
public class MyTokenProvider : TokenProvider
{
public override string Execute(Dictionary<string, string> parameters)
{
return "My " + parameters["parameter"];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment