70-489 · Question #78
You need to implement the remote event receiver for the Admin Custom List app. What should you do?
The correct answer is D. Insert the following code segment at line RR11. [OperationContractAttribute] SPRemoteEventResult ProcessEvent(SPRemoteEventProperties ProcessEvent This is a synchronous event handler.Use it to call code when a “before” event [OperationContractAttribute(IsOneWay = true)] void ProcessOneWayEvent(SPRemoteEventProperties…
Question
You need to implement the remote event receiver for the Admin Custom List app. What should you do?
Options
- AInsert the following code segment at line RR05:
- BInsert the following code segment at line RR05:
- CInsert the following code segment at line RR11:
- DInsert the following code segment at line RR11:
How the community answered
(24 responses)- A17% (4)
- B4% (1)
- C8% (2)
- D71% (17)
Explanation
[OperationContractAttribute] SPRemoteEventResult ProcessEvent(SPRemoteEventProperties ProcessEvent This is a synchronous event handler.Use it to call code when a “before” event [OperationContractAttribute(IsOneWay = true)] void ProcessOneWayEvent(SPRemoteEventProperties properties) ProcessOneWayEvent This is an asynchronous event handler. Use it to call code when an “after” event occurs . us/library/microsoft.sharepoint.client.eventreceivers.iremoteeventservice.aspx
Topics
Community Discussion
No community discussion yet for this question.