Tiled Image Service Online

This sample demonstrates an ArcGISTiledMapServiceLayer with the url property set to a tiled image service.
Download Sample Application<UserControl x:Class="ArcGISWPFSDK.TiledImageService" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:esri="http://schemas.esri.com/arcgis/client/2009"> <Grid> <esri:Map x:Name="MyMap" UseAcceleratedDisplay="True"> <esri:Map.Extent> <esri:Envelope XMin="-8838052.325801775" YMin="5409956.10324135" XMax="-8836537.917179003" YMax="5410659.562767227" > <esri:Envelope.SpatialReference> <esri:SpatialReference WKID="102100"/> </esri:Envelope.SpatialReference> </esri:Envelope> </esri:Map.Extent> <esri:ArcGISTiledMapServiceLayer ID="ImageServer" Url="http://sampleserver6.arcgisonline.com/arcgis/rest/services/Toronto/ImageServer"/> </esri:Map> </Grid> </UserControl>
5/16/2014