Skip to content

Instantly share code, notes, and snippets.

@netojoa
Created May 14, 2018 12:06
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 netojoa/204d12df59223498e0703adf5bdc8cd1 to your computer and use it in GitHub Desktop.
Save netojoa/204d12df59223498e0703adf5bdc8cd1 to your computer and use it in GitHub Desktop.
public class CustomAction : SubmitActionBase<string>
{
public CustomAction(ISubmitActionData submitActionData) : base(submitActionData)
{
}
protected override bool Execute(string data, FormSubmitContext formSubmitContext)
{
// Some code here
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment