You are developing a Silverlight 4 application.
You need to specify that the “/Sales/June/Short” uniform resource identifier (URI) pattern is mapped to the following URI. /Views/Reports/Sales.xaml time=June&show=Short
Which URI mapping should you add?
A.
<sdk:UriMapping Uri=”/{reporttype}/{month}/{format}” Mapped Uri =”/{reporttype} .xaml time={month}&show={format}”/>
B.
<sdk:UriMapping Uri=”/{reporttype}.xaml time={month}&show={format}” MappedUri=”/{reporttype}/{month}/{format}”/>
C.
<sdk:UriMapping Uri=”/{reporttype}/{month}/{format}” MappedUri=”/Views/Reports/{reporttype}.xaml time={month}&show={format}”/>
D.
<sdk:UriMapping Uri=”/Views/Reports/{reporttype}.xaml time={month}&show={format}” MappedUri=”/{reporttype}/{month}/{format}”/>