How should you complete the code? To answer, select the appropriate options in the answer area.

November 19, 2021 by Admin

HOTSPOT

You need to insert code at line LE03 of LoginEvent.cs to ensure that all authentication events are processed correctly.

How should you complete the code? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

AZ-204 Developing Solutions for Microsoft Azure Part 09 Q11 274

AZ-204 Developing Solutions for Microsoft Azure Part 09 Q11 274

AZ-204 Developing Solutions for Microsoft Azure Part 09 Q11 275

AZ-204 Developing Solutions for Microsoft Azure Part 09 Q11 275

Explanation:

Box 1: id
id is a unique identifier for the event.

Box 2: eventType
eventType is one of the registered event types for this event source.

Box 3: dataVersion
dataVersion is the schema version of the data object. The publisher defines the schema version.

Scenario: Authentication events are used to monitor users signing in and signing out. All authentication events must be processed by Policy service. Sign outs must be processed as quickly as possible.

The following example shows the properties that are used by all event publishers:

[
{
“topic”: string,
“subject”: string,
“id”: string,
“eventType”: string,
“eventTime”: string,
“data”:{
object-unique-to-each-publisher
},
“dataVersion”: string,
“metadataVersion”: string
}
]

Leave a Reply