Microsoft Power Platform Developer — Question 72
A company plans to implement an integration between Microsoft Dataverse and Azure Service Bus.
When an Account row is updated, if the Credit Limit is set to over $25,000, information about the row must post to an Azure Service Bus queue. The previous Credit Limit value must also be included.
You use the Microsoft Power Platform CLI to create the plug-in package.
You need to implement an interface.
Which interface should you implement next?
Answer options
- A. IServiceEndpointNotificationService
- B. IPluginExecutionContext
- C. IWebHttpServiceEndpointPlugin
- D. IServiceEndpointPlugin
Correct answer: B
Explanation
The correct answer is B, IPluginExecutionContext, as it provides context information about the execution of the plug-in, which is essential for accessing the previous Credit Limit value. The other options do not provide the necessary context or functionality required for this specific integration task.