nerdexam
Microsoft

70-484 · Question #53

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 cod

The correct answer is A. Option A 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);

Program with WinRT APIs

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-484 question #53 exhibit

Options

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

How the community answered

(53 responses)
  • A
    77% (41)
  • B
    9% (5)
  • D
    13% (7)

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#notification duration#live tiles#TileNotification

Community Discussion

No community discussion yet for this question.

Full 70-484 Practice