This:
// The InputParameters collection contains all the data passed in the message request.
if (context.InputParameters.Contains("Target") &&
context.InputParameters["Target"] is Entity)
{
// Obtain the target entity from the input parameters.
Entity entity = (Entity)context.InputParameters["Target"];
I read it here but didn't get it: https://msdn.microsoft.com/en-us/library/gg309673.aspx
Can anyone explain it?
*This post is locked for comments
I have the same question (0)