nerdexam
Microsoft

70-491 · Question #96

You are developing a Windows Store app. An XML document named tileXmlDocument contains the layout of the app tile. You need to configure a tile notification that will display for 15 seconds. Which…

The correct answer is B. Option B C. Option C. tileNotification.ExpirationTime = DateTimeOffset.UtcNow.AddMinutes(10); - This example specifies that the notification should appear in 3 hours. This example uses the DateTime object. Int16 dueTimeInHours = 3; DateTime dueTime = DateTime.Now.AddHours(dueTimeInHours);

Create user interfaces

Question

You are developing a Windows Store app. An XML document named tileXmlDocument contains the layout of the app tile. You need to configure a tile notification that will display for 15 seconds. Which code segments can you use to achieve this goal? (Each correct answer presents a complete solution. Choose all that apply.)

Exhibit

70-491 question #96 exhibit

Options

  • AOption A
  • BOption B
  • COption C
  • DOption D

How the community answered

(26 responses)
  • A
    8% (2)
  • B
    73% (19)
  • D
    19% (5)

Explanation

tileNotification.ExpirationTime = DateTimeOffset.UtcNow.AddMinutes(10); - This example specifies that the notification should appear in 3 hours. This example uses the DateTime object. Int16 dueTimeInHours = 3; DateTime dueTime = DateTime.Now.AddHours(dueTimeInHours);

Topics

#tile notification#live tiles#notification duration#TileUpdateManager

Community Discussion

No community discussion yet for this question.

Full 70-491 Practice