https://msdn.microsoft.com/en-us/library/gg509012.aspx
I am trying to follow the workflow example
protected override void Execute(CodeActivityContext executionContext)
{
IWorkflowContext context = executionContext.GetExtension<IWorkflowContext>();
//Create an Organization Service
IOrganizationServiceFactory serviceFactory = executionContext.GetExtension<IOrganizationServiceFactory>();
IOrganizationService service = serviceFactory.CreateOrganizationService(context.InitiatingUserId);
//Retrieve the contact id
Guid contactId = this.Contact.Get(executionContext).Id;
What is this.Contact.Get?
When I try to write this in C#, it gives an error. "Program" does not contain a definition for Contact accepting a first argument of Type Program
*This post is locked for comments
I have the same question (0)