Skip to content

Instantly share code, notes, and snippets.

@furkankaracan
Created July 29, 2022 11:22
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save furkankaracan/a5e958dc38056aca4ca78ef69ded95dd to your computer and use it in GitHub Desktop.
private static void ExecutePlugin(LocalPluginContext localContext)
{
var context = localContext.PluginExecutionContext;
//Read your Input Parameters
var entityId = context.InputParameters["EntityId"] as string;
var fieldNamesToCalculate = PluginContext.Context.InputParameters["FieldNamesToCalculate"] as string;
//write your logic
//.
//.
//.
// Set Output Parameters
pluginContext.Context.OutputParameters["Response"] = "Success";
pluginContext.Context.OutputParameters["IsSuccess"] = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment