Subversion Repository Public Repository

Nextrek

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
<?xml version="1.0"?><doc>
    <assembly>
        <name>Microsoft.Advertising.WinRT.UI</name>
    </assembly>
    <members>
        <member name="T:Microsoft.Advertising.WinRT.UI.AdErrorEventArgs">
            <summary>
            The <c>AdErrorEventArgs</c> class contains information about errors that occur when ads are retrieved from the ad server.
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdErrorEventArgs.#ctor(System.Exception)">
            <summary>
            Initialize the AdErrorEventArgs with a causing error.
            </summary>
            <param name="error">Error description</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdErrorEventArgs.#ctor(System.Exception,MicrosoftAdvertising.ErrorCode)">
            <summary>
            Initialize the AdErrorEventArgs with a causing error.
            </summary>
            <param name="error">Error description</param>
            <param name="errorCode">String version of the error code parameter.</param>
        </member>
        <member name="P:Microsoft.Advertising.WinRT.UI.AdErrorEventArgs.Error">
            <summary>
            The <c>Exception</c> that triggered the error event.
            </summary>
        </member>
        <member name="P:Microsoft.Advertising.WinRT.UI.AdErrorEventArgs.ErrorCode">
            <summary>
            Gets or sets the ErrorCode string.
            </summary>
        </member>
        <member name="T:Microsoft.Advertising.WinRT.UI.AdControl">
            <summary>
             <para>
                The Microsoft <c>AdControl</c> provides everything that is necessary to display
                advertising in an app.
              </para>
              <para>
                Instantiates an <c>AdControl</c> and provides the optional targeting parameters.
              </para>
            </summary>
            <remarks>
              <para>
                The <c>AdControl</c> is configured to show a new ad every 60 seconds. This is
                the default setting. If this behavior does not suit the app, you can set
                <c>IsAutoRefreshEnabled</c> to <c>false</c> and use the <c>Refresh</c> method to request
                that the <c>AdControl</c> show the next ad that is available.
              </para>
              <para>
                Do not use the same instance of an <c>AdControl</c> across multiple pages.
              </para>
              <para>
                Once set, the parent of the <c>AdControl</c> should not be changed.
              </para>
              <para>
                All of the required properties on the <c>AdControl</c> need to be set before adding the control
                to a parent object. These required properties include <c>AdUnitId</c> and <c>ApplicationId</c>.
              </para>
            </remarks>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdControl.AdRotationTimeInSeconds">
            <summary>
            Constant for Ad rotation time, currently is equal to one minute
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdControl.MinAdRefreshIntervalInSecondsMetered">
            <summary>
            Constant for minimum Ad refresh interval when on metered network
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdControl.MinAdRefreshIntervalInSecondsUnmetered">
            <summary>
            Constant for minimum Ad refresh interval when on unmetered network
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdControl.isAnAdExpanded">
            <summary>
            in multiple ad scenarios this tracks if any ad is engaged so that
            other ads on the same page do not refresh.
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdControl.isInitialized">
            <summary>
            tracks if the adcontrol has been initialised yet, this could happend from two
            different code paths, OnApplyTemplate or Loaded
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdControl.appIsActive">
            <summary>
            Flag shows if the host application is active or not
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdControl.isExpanded">
            <summary>
            Flag shows if the ad has been expanded
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdControl.isUserEngaged">
            <summary>
            Flag shows if the user is interacting with the ad inline (not expanded)
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdControl.isAutoRefreshEnabled">
            <summary>
            automatic (true) or manual (false) rotation
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdControl.isAutoRefreshChangeAllowed">
            <summary>
            Flag that keeps track of if the app developer set the rotation or not
            This property can be set just once, and cannot be set after the control is added to a parent
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdControl.rotationTimer">
            <summary>
            Ad rotation timer
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdControl.timeAtLastRotation">
            <summary>
            time when ad was last refreshed
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdControl.advertisingWebBrowser">
            <summary>
            the control displaying the currently viewable ad
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdControl.isSuspended">
            <summary>
            tracks the suspended state of the AdControl
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdControl.isPerformanceScrollingEnabled">
            <summary>
            stores the state of performance scrolling
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdControl.previousIsEnabledState">
            <summary>
            stores the previous IsEnabled state, this is used in preventing
            focus from being stolen by the WebView
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.#ctor">
            <summary>
            Initializes a new <c>AdControl</c>.
            </summary>
            <remarks>
              <para>
                The developer must set the <c>ApplicationId</c> and <c>AdUnitId</c> properties before the app
                can show an ad.
              </para>
            </remarks>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.Refresh">
            <summary>
              <para>
                A call to this method directs the <c>AdControl</c> to show the next ad as soon as an ad
                becomes available.
              </para>
              <para>
                This method may not be used when <c>IsAutoRefreshEnabled</c> is set to <c>true</c>.
              </para>
            </summary>
            <remarks>
              A new ad might not be available because of an error that occurred while trying to contact the ad platform.
            </remarks>
            <exception cref="T:System.InvalidOperationException">The IsAutoRefreshEnabled property is set to true.</exception>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.AddAdTag(System.String,System.String)">
            <summary>
            Add an ad tag to the ad control. The maximum is 10 tags per ad control. If maximum is exceeded an errorOccurred event will be fired. 
            </summary>
            <param name="tagName">The name of the tag. Maximum of 16 characters, if exceeded an errorOccurred event will be fired.</param>
            <param name="tagValue">The value of the tag. Maximum of 128 characters, if exceeded an errorOccurred event will be fired.</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.RemoveAdTag(System.String)">
            <summary>
            Remove an ad tag from the ad control. This has no effect if the tag name does not exist.
            </summary>
            <param name="tagName">The name of the tag to remove.</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.Suspend">
            <summary>
            Suspends the current ad and replaces the current view of the ad with a snapshot of
            what was currently being rendered. If the ad was engaged, this action is cancelled 
            and the expanded ad is closed. After calling Suspend the AdControl will not automatically 
            refresh, if IsAutoRefreshEnabled=true, and you cannot manually refresh the AdControl 
            until Resume has been called.
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.Suspend(System.Boolean)">
            <summary>
            Suspends the current ad and replaces the current view of the ad with a snapshot of
            what was currently being rendered. After calling Suspend the AdControl will not 
            automatically refresh, if IsAutoRefreshEnabled=true, and you cannot manually 
            refresh the AdControl until Resume has been called.
            </summary>
            <param name="closeExpandedAd">If true and the ad was engaged, this action is cancelled
            and the expaned ad is closed. If false no action is taken on the expanded ad.</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.Resume">
            <summary>
            Removes the static snapshot of the AdControl and replaces it with the dynamic display.
            Resumes automatic refresh of the AdControl, if IsAutoRefreshEnable=true, and allows
            manual refresh to occur again after Suspend.
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.OnLoaded(System.Object,Windows.UI.Xaml.RoutedEventArgs)">
            <summary>
            Loaded event handler - tells you when the control is ready to go
            </summary>
            <param name="sender">sender of the event</param>
            <param name="e">arguments for the event</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.OnUnloaded(System.Object,Windows.UI.Xaml.RoutedEventArgs)">
            <summary>
            Unloaded event handler - tells you when the control needs to be cleaned up
            </summary>
            <param name="sender">sender of the event</param>
            <param name="e">arguments for the event</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.OnWindowVisibilityChanged(System.Object,Windows.UI.Core.VisibilityChangedEventArgs)">
            <summary>
            When the app is hidden by the start screen or another app, pause the ad control.
            </summary>
            <param name="sender">sender of the event</param>
            <param name="e">arguments for the event</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.InitializeAdControl">
            <summary>
            Initialize the AdControl.
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.OnSizeChanged(System.Object,Windows.UI.Xaml.SizeChangedEventArgs)">
            <summary>
            Size changed event handler. If the control
            contains bannerAdView/textAdView, trigger size validation and 
            ad rendering. Also change placement size according to the control
            size.
            </summary>
            <param name="sender">Sender of the event</param>
            <param name="e">Arguments for the event</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.SetEngagedStates(System.Boolean,System.Boolean)">
            <summary>
            updates the engaged state of the adcontrol
            </summary>
            <param name="isExpandedNew">the new expanded state</param>
            <param name="isUserEngagedNew">the new user engaged state</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.OnRichMediaAction(System.Object,Microsoft.Advertising.WinRT.UI.RichMediaEventArgs)">
            <summary>
            OnRichMediaAction handler
            </summary>
            <param name="sender">this is the AdControl</param>
            <param name="e">rich media event argument</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.AdLoadFailedHandler(System.Object,Microsoft.Advertising.WinRT.UI.AdErrorEventArgs)">
            <summary>
            Handles the case when an ad fails to load.
            </summary>
            <param name="sender">state of the event receiver</param>
            <param name="e">Event argumnets</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.AdRenderedHandler(System.Object,System.EventArgs)">
            <summary>
            Handles the case when an ad has rendered
            </summary>
            <param name="sender">state of the event receiver</param>
            <param name="e">Event argumnets</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.OnAdRotationTimer(System.Object,System.Object)">
            <summary>
            Private event handler on Ad rotation timer event
            </summary>
            <param name="state">state of the event receiver</param>
            <param name="e">Event arguments</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.StartAdRequest">
            <summary>
            starts the next ad request
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.RefreshCommon">
            <summary>
            checks ad state and raises errors if not in a state that allows ad refresh
            otherwise initiates an ad refresh.
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.ShowNextAd">
            <summary>
            Get an ad from the AdPlacement and show it.
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.PauseTimer">
            <summary>
            Pause the timer and set the next timer interval to the remaining time
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.StartTimer">
            <summary>
            Start the timer with whatever the interval is set.
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.StopTimerAfterEngaged">
            <summary>
            Stop the timer, set the next timer interval to RotationTime
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.DiscardCurrentAd">
            <summary>
            This will discard the current ad, remove any existing child elements (e.g. the WebView containing the ad),
            and make the ad control transparent.
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.BroadcastErrorEvent(System.Exception)">
            <summary>
            Helper method that broadcasts error events to any listeners 
            and discard current ad.
            </summary>
            <param name="error">the exception</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.BroadcastErrorEvent(System.Exception,System.Boolean)">
            <summary>
            Helper method that broadcasts error events to any listeners
            and can choose to discard ad.
            </summary>
            <param name="error">the exception</param>
            <param name="discardAd">true to discard ad, false not to</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.BroadcastAdRefreshedEvent">
            <summary>
            Helper method that broadcasts ad refreshed events to any listeners
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.VerifyAndDisplayAd(MicrosoftAdvertising.Shared.IAdvertisement)">
            <summary>
            Helper method called from the event handler for the library notification of a new ad - used to make sure the
            new ad fits in the size available, and can be displayed by the ad control.
            </summary>
            <param name="ad">Advertisement to verify and display</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.AdDownloadComplete(MicrosoftAdvertising.Shared.AdPlacement,MicrosoftAdvertising.Shared.AdException)">
            <summary>
            Handle the AdDownload complete events
            </summary>
            <param name="adPlacement">The adplacement instance</param>
            <param name="ex">Exception when AdDownload is failed.</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.UnloadAdControl">
            <summary>
            Release AdControl resources when AdControl is removed from the application page.
            This method detects whether this.Parent is null. If the parent is null, we need to
            clean up the AdControl.
            
            The cleanup will only occur when the Parent is null, unless forceUnload is true.
            When the AdControl is being unloaded (see the AdControl_Unloaded event handler)
            we force cleanup even if Parent is not null.
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.ActivateAdControl">
            <summary>
            Steps that need to happen when the ad control gets activated or comes in view
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.DeactivateAdControl">
            <summary>
            Steps that need to happen when the ad control gets deactivated or hides from view
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdControl.CheckIfRefreshIntervalMetAndRaiseError">
            <summary>
            returns true if the minimum time between manual refresh has passed,
            this is 30 seconds when on an unmetered connection and 60 seconds on 
            a metered connection, raises error if interval is not met
            </summary> 
        </member>
        <member name="E:Microsoft.Advertising.WinRT.UI.AdControl.ErrorOccurred">
            <summary>
            Error event that is raised when the <c>AdControl</c> encounters an error while retrieving ads.
            </summary>
        </member>
        <member name="E:Microsoft.Advertising.WinRT.UI.AdControl.AdRefreshed">
            <summary>
            Event that is raised when the <c>AdControl</c> receives a new ad.
            </summary>
        </member>
        <member name="E:Microsoft.Advertising.WinRT.UI.AdControl.IsEngagedChanged">
            <summary>
            Event that is raised when the user clicks on the ad and the action dialog is waiting for input from the user.
            </summary>
            <remarks>
            This event is intended to give developers the option to pause the app when the action dialog appears.
            </remarks>
        </member>
        <member name="P:Microsoft.Advertising.WinRT.UI.AdControl.Latitude">
            <summary>
            The latitude of the user.
            Invalid values will be ignored.
            </summary>
        </member>
        <member name="P:Microsoft.Advertising.WinRT.UI.AdControl.Longitude">
            <summary>
            The longitude of the user.
            Invalid values will be ignored.
            </summary>
        </member>
        <member name="P:Microsoft.Advertising.WinRT.UI.AdControl.AdUnitId">
            <summary>
              <para>
                Gets or sets the ad unit identifier for this <c>AdControl</c> instance.
              </para>
              <para>
                This value is provided to the publisher when the publisher creates an <c>AdUnit</c> in pubCenter. See the Publisher Onboarding Guide for more information.
              </para>
            </summary>
            <remarks>
              <para>Once set, this property cannot be modified.</para>
            </remarks>
        </member>
        <member name="P:Microsoft.Advertising.WinRT.UI.AdControl.ApplicationId">
            <summary>
              The application ID of the app. This value is provided to you when you register the app with pubCenter.
            </summary>
            <remarks>
              <para>Only one value for the application ID can be used within an app.</para>
              <para>
                If more than one value for the <c>ApplicationId</c> is used in different <c>AdControl</c> objects that are in the app, some controls will
                not receive ads and will raise an <c>ErrorOccurred</c> event.
              </para>
            </remarks>
        </member>
        <member name="P:Microsoft.Advertising.WinRT.UI.AdControl.IsEngaged">
            <summary>
            Gets a value that indicates whether the user is currently interacting with one of the ads.
            </summary>
        </member>
        <member name="P:Microsoft.Advertising.WinRT.UI.AdControl.IsAutoRefreshEnabled">
            <summary>
            Enables or disables the automatic refresh of ads. This property cannot be changed after the <c>AdControl</c> is added to a page.
            </summary>
            <remarks>
              This property can only be set when the <c>AdControl</c> is instantiated by using the default constructor or in XAML.
              Once set, this property cannot be modified later. This property is set to <c>true</c> by default.
            </remarks>
            <exception cref="T:System.InvalidOperationException">The IsAutoRefreshEnabled property has been set already.</exception>
        </member>
        <member name="P:Microsoft.Advertising.WinRT.UI.AdControl.IsPerformanceScrollingEnabled">
            <summary>
            When true and the AdControl is in a scrollable container the current ad will temporarily be replaced
            by a snapshot image of the ad to improve scrolling performance. When the AdControl has stopped
            scrolling it will revert back to normal behaviour. When false no additional actions are performed on 
            scolling.
            </summary>
        </member>
        <member name="P:Microsoft.Advertising.WinRT.UI.AdControl.IsSuspended">
            <summary>
            Gets the current suspended state of the AdControl.
            </summary>
        </member>
        <member name="P:Microsoft.Advertising.WinRT.UI.AdControl.IsAnAdEngaged">
            <summary>
            Internal property to expose whether any ad is engaged
            </summary>
            <remarks>
            This is exposed a property so dependencies can be tested via mock or stub
            </remarks>
        </member>
        <member name="P:Microsoft.Advertising.WinRT.UI.AdControl.IsPremiumInventory">
            <summary>
            Whether this ad placement is reserved or long-tail inventory.
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.IAdvertisingWebBrowser.GetContainerWidth">
            <summary>
            Gets the current contained width.
            </summary>
            <returns>Container width.</returns>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.IAdvertisingWebBrowser.GetContainerHeight">
            <summary>
            Gets the current container height.
            </summary>
            <returns>Container height.</returns>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.IAdvertisingWebBrowser.Expand(System.Uri,Microsoft.Advertising.WinRT.UI.ExpandProperties)">
            <summary>
            method passed as a delegate to WP7TaskInvoker to handle expand operation
            </summary>
            <param name="uri">url to expand to if specified</param>
            <param name="expandProperties">properties for the expand (whether to show background, it's colour etc)</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.IAdvertisingWebBrowser.Resize(System.Double,System.Double)">
            <summary>
            method passed as a delegate to the WP7TaskInvoked to handle the expand operation
            </summary>
            <param name="width">width to resize to</param>
            <param name="height">height to resize to</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.IAdvertisingWebBrowser.UpdateExpandProperties(Microsoft.Advertising.WinRT.UI.ExpandProperties)">
            <summary>
            This allows resizing an already-expanded ad. This is useful when screen size changes.
            </summary>
            <param name="expandProps">updated ExpandProperties to use for the expanded ad</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.IAdvertisingWebBrowser.RaiseAdLoadFailedEvent(System.String)">
            <summary>
            Raises the page load failed event to indicate that the ad did not load properly.
            This could be due to a timeout, problem loading the renderer, problem interacting
            with JavaScript using InvokeScript, etc.
            </summary>
            <param name="message">page load failed message</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.IAdvertisingWebBrowser.SetAdInstanceState(System.String)">
            <summary>
            sets the adInstanceState for this AdvertisingWebBrowser.
            this is typically called by an expanded view ad to update
            the default view ad.
            </summary>
            <param name="data">ad state to store</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.IAdvertisingWebBrowser.HandleExpandedClose">
            <summary>
            Handles the closing of an expanded ad.
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.webView">
            <summary>
            the webbrowser control responsible for rendering content
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.ormma">
            <summary>
            the Ormma handler
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.rendererUrl">
            <summary>
            url of the renderer to use
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.adJson">
            <summary>
            ad json blob to pass into the renderer
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.prmJson">
            <summary>
            prm json blob to pass into the renderer
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.rendererOptions">
            <summary>
            renderer options json blob to pass into the renderer
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.polyAdState">
            <summary>
            the state of the browser (default, expanded etc)
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.webRequest">
            <summary>
            for pre-downloading of renderer
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.popupLock">
            <summary>
            controls access to the popup
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.preExpandWidth">
            <summary>
            holds the pre-expanded width
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.preExpandHeight">
            <summary>
            holds the pre-expanded height
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.popupHost">
            <summary>
            container for expanded ad experience
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.navigateUri">
            <summary>
            stores the uri to navigate to for the expand to url scenario
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.subscribedToScriptNotify">
            <summary>
            TODO: REMOVE this when the Unload/Load content wipe bug of WebView gets fixed
            this is to stop a double subscriptiong to the event.
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.webViewBrushDisplayed">
            <summary>
            tracks if the webViewBrush is displayed
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.previousOriginOffset">
            <summary>
            stores the WebViews previous location 
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.previousOrientation">
            <summary>
            stores the previous orientation to determine if the position change
            was caused by a screen rotation
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.lastOffsetChangeTimeStamp">
            <summary>
            time the previousOriginOffset was recorded 
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.webViewBrushDisplayRectangle">
            <summary>
            rectangle for painting the webviewbrush to
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.isPerformanceScrollingEnabled">
            <summary>
            toggle for weather to enable/disable performance scrolling
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.isSuspended">
            <summary>
            tracks if the ad is in the suspended state
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.#ctor">
            <summary>
            AdvertisingWebBrowser constructor
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.#ctor(System.String,System.String,System.String,System.String,System.Boolean)">
            <summary>
            constuctor
            </summary>
            <param name="rendererUrl">url to the ad renderer</param>
            <param name="adJsonBlob">ad data to pass to the renderer</param>
            <param name="prmJsonBlob">payload params to pass to the renderer</param>
            <param name="rendererOptions">publisher provided renderer options</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.#ctor(System.Uri)">
            <summary>
            AdvertisingWebBrowser constructor used when expanding to a url 
            </summary>
            <param name="uri">target address of expansion</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.Expand(System.Uri,Microsoft.Advertising.WinRT.UI.ExpandProperties)">
            <summary>
            method passed as a delegate to WP7TaskInvoker to handle expand operation
            </summary>
            <param name="uri">url to expand to if specified</param>
            <param name="expandProperties">properties for the expand (whether to show background, it's colour etc)</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.Resize(System.Double,System.Double)">
            <summary>
            Method passed as a delegate to the TaskInvoker to handle the expand operation.
            </summary>
            <param name="width">width to resize to</param>
            <param name="height">height to resize to</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.OrmmaClose">
            <summary>
            this method pipes a close call from the WebBrowserView down to the ormma
            level so that it can raise the necessary events, in the end a delegate to
            the WebBrowserViews own ClosePopup is called
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.SetAdInstanceState(System.String)">
            <summary>
            sets the adInstanceState for this AdvertisingWebBrowser.
            this is typically called by an expanded view ad to update
            the default view ad.
            </summary>
            <param name="data">ad state to store</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.GetContainerWidth">
            <summary>
            Gets the current contained width.
            </summary>
            <returns>Container width.</returns>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.GetContainerHeight">
            <summary>
            Gets the current container height.
            </summary>
            <returns>Container height.</returns>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.HandleExpandedClose">
            <summary>
            Handles the closing of the expanded webView. Sets the state back to default on the current webView.
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.Suspend(System.Boolean)">
            <summary>
            suspends display of a dynamic ads being rendered, this basically means showing
            a snapshot of the rendered ad in using a WebViewBrush
            </summary>
            <param name="closeExpandedAd">if true and ad expanded then close the expanded ad,
            otherwise do nothing to expanded ad.</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.Resume">
            <summary>
            resumes display of dynamic ad being rendered, this basically means hiding
            the WebViewBrush and displaying the WebView
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.HandleScriptNotify(System.String)">
            <summary>
            Handles ScriptNotify events containing ORMMA actions.
            </summary>
            <param name="actionInfo"></param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.WebBrowserUnloaded(System.Object,Windows.UI.Xaml.RoutedEventArgs)">
            <summary>
            handles the unloaded event and performs necessary cleanup
            </summary>
            <param name="sender">Sender of the event</param>
            <param name="e">Event argument</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.WebBrowserLoaded(System.Object,Windows.UI.Xaml.RoutedEventArgs)">
            <summary>
            WebBrowserLoaded event handler
            </summary>
            <param name="sender">Sender of the event</param>
            <param name="args">Event arguments</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.ClosedEventHandler(System.Object,System.EventArgs)">
            <summary>
            cleanup the popup and reset the size of the AdvertisingWebBrowser to the 
            pre-expand size
            </summary>        
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.RendererDownloadRequestComplete(MicrosoftAdvertising.Shared.HttpResponseData)">
            <summary>
            callback 
            </summary>
            <param name="responseData">response data for request</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.RenderAd(System.String)">
            <summary>
            called after the render script is downloaded, sets the webview's content to the bootstrap
            with ormma and renderer set inside 'script' tags
            </summary>
            <param name="rendererScript"></param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.ConfigurePerformanceScrolling">
            <summary>
            sets up handlers required for performance scrolling
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.WebViewLayoutUpdatedHandler(System.Object,System.Object)">
            <summary>
            handler for the web view layout changed event. this is used for detecting movement
            and when to swap in the WebViewBrush for improved scrolling performance
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.ShowWebViewBrush">
            <summary>
            displays the WebViewBrush and hides the WebView
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.ShowWebView">
            <summary>
            displays the WebView and hides the WebViewBrush
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.OrmmaAdRenderedHandler(System.Object,System.EventArgs)">
            <summary>
            handles the AdRendered event
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.OnSizeChanged(System.Object,Windows.UI.Xaml.SizeChangedEventArgs)">
            <summary>
            handles sized change events by applying the new size to the
            child controls
            </summary>
            <param name="sender">Sender of the event</param>
            <param name="e">Event argument</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.RaiseAdLoadFailedEvent(System.String)">
            <summary>
            Raises the ad load failed event to indicate that the ad did not load properly.
            This could be due to a timeout, problem loading the renderer, problem interacting
            with JavaScript using InvokeScript, etc.
            </summary>
            <param name="message">page load failed message</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.RaiseRichMediaActionEvent(Microsoft.Advertising.WinRT.UI.RichMediaActionType)">
            <summary>
            raises the rich media action event
            </summary>
            <param name="action">the rich media action that occurred</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.OrmmaRichMediaActionHandler(System.Object,Microsoft.Advertising.WinRT.UI.RichMediaEventArgs)">
            <summary>
            This passes on any events raised in OrmmaImpl.
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="E:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.RichMediaAction">
            <summary>
            rich media actions
            </summary>
        </member>
        <member name="E:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.AdLoadFailed">
            <summary>
            event that is fired when an ad fails to load due to timeout or other error
            </summary>
        </member>
        <member name="E:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.AdRendered">
            <summary>
            event that is fired when an ad is rendered
            </summary>
        </member>
        <member name="P:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.CleanupOnUnload">
            <summary>
            Controls the cleanup of the ormma instance, this is necessary since when expanding
            we're unloading and re-loading the webbrowser which triggers the unloaded event that 
            would otherwise indicate that cleanup is required. This will be set to false in the
            loaded event to ensure cleanup unless explicitly disabled.
            </summary>
        </member>
        <member name="P:Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser.IsPerformanceScrollingEnabled">
            <summary>
            When true the currently rendered ad will temporarily be replaced by a snapshot image to improve scrolling
            performance. When the AdControl has stopped scrolling it will revert back to normal behaviour. When false
            no additional actions are performed on scolling.
            </summary>
        </member>
        <member name="T:Microsoft.Advertising.WinRT.UI.Constants">
            <summary>
            Class containing shared constants.
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.Constants.HiddenWhenShipped">
            <summary>
            HiddenWhenShipped is used within DebuggerBrowsable attribute for
            all private/internal fields/properties of public classes to hide
            implementation details from app developers in Visual Studio's
            Watch window when debugging.
            </summary>
        </member>
        <member name="T:Microsoft.Advertising.WinRT.UI.JsFunctions">
            <summary>
            constants which represent javascript function names used in ormma
            </summary>
        </member>
        <member name="T:Microsoft.Advertising.WinRT.UI.OrmmaMethodNames">
            <summary>
            ormma method names used in error reporting
            </summary>
        </member>
        <member name="T:Microsoft.Advertising.WinRT.UI.FieldLimits">
            <summary>
            field limits used in validation
            </summary>
        </member>
        <member name="T:Microsoft.Advertising.WinRT.UI.OrmmaParameters">
            <summary>
            name of ormma parameters in string passed down form JS layer
            </summary>
        </member>
        <member name="T:Microsoft.Advertising.WinRT.UI.OrmmaActions">
            <summary>
            action names in the string passed down from the JS layer
            </summary>
        </member>
        <member name="T:Microsoft.Advertising.WinRT.UI.OrmmaNetworkStates">
            <summary>
            names of network states used by ormma
            </summary>
        </member>
        <member name="T:Microsoft.Advertising.WinRT.UI.ExpandProperties">
            <summary>
            holds the container properties used during expand
            properties = {  
                            "width`*`" : "nn",
                            "height`*`" : "nn",   
                            "useCustomClose`*`" :  "true|false",  
                            "isModal`*`" : "true|false" (read-only),  
                            "lockOrientation" : "true|false",  
                          }
            see http://code.google.com/p/ormma/wiki/ORMMA_JavaScript#getExpandProperties                 
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.ExpandProperties.#ctor(System.Int32,System.Int32,System.Boolean,System.Boolean)">
            <summary>
            ExpandProperties constructor
            </summary>
            <param name="width">widht to expand to</param>
            <param name="height">height to expand to</param>
            <param name="useCustomClose">choose whether to use custom close</param>
            <param name="lockOrientation">choose whether to lock orientation</param>
        </member>
        <member name="P:Microsoft.Advertising.WinRT.UI.ExpandProperties.Width">
            <summary>
            the width of creative in pixels, default is full screen width 
            </summary>
        </member>
        <member name="P:Microsoft.Advertising.WinRT.UI.ExpandProperties.Height">
            <summary>
            the height of creative in pixels, default is full screen height 
            </summary>
        </member>
        <member name="P:Microsoft.Advertising.WinRT.UI.ExpandProperties.UseCustomClose">
            <summary>
            allows the ad designer to replace the default close graphic. True, stop showing the default
            close graphic and rely on ad creative’s custom close indicator; false (default), container
            will display the default close graphic/
            </summary>
        </member>
        <member name="P:Microsoft.Advertising.WinRT.UI.ExpandProperties.IsModal">
            <summary>
             read-only property that identifies if the expanded container is modal or not. True, the SDK
             is providing a modal container for the expanded ad; false, the SDK is not providing a modal
             container for the expanded ad. 
            </summary>
        </member>
        <member name="P:Microsoft.Advertising.WinRT.UI.ExpandProperties.LockOrientation">
            <summary>
            Lock the orientation of the expansion, if it is not specified in the properties object a value
            of false is assumed. 
            </summary>
        </member>
        <member name="T:Microsoft.Advertising.WinRT.UI.IOrmmaImpl">
            <summary>
            Ormma implementation for managed interface.
            </summary>
        </member>
        <member name="T:Microsoft.Advertising.WinRT.UI.ITaskInvoker">
            <summary>
            interface for classes that use device specific actions
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.OrmmaImpl.taskInvoker">
            <summary>
            responsible for invoking actions that are platform specific
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.OrmmaImpl.advertisingWebBrowser">
            <summary>
            refernce to AdvertisingWebBrowser used for expand, resize and openmap
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.OrmmaImpl.currentState">
            <summary>
            current state of the rich media ad
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.OrmmaImpl.previousState">
            <summary>
            previous state of the rich media ad, this is needed since you can
            expand from 'default' and 'resized'. On close you need to know which
            state to return to
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.OrmmaImpl.expandProperties">
            <summary>
            holds the properties used for expanding
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.OrmmaImpl.defaultWidth">
            <summary>
            the width of the ad in the default state
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.OrmmaImpl.defaultHeight">
            <summary>
            the height of the ad in the default state
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.OrmmaImpl.expandedCloseFunction">
            <summary>
            delegate to function called on close when in the expanded state
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.OrmmaImpl.jsonWrapper">
            <summary>
            json wrapper function to use - TODO: refactor to inject this dependency to make easier to test it
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.OrmmaImpl.adInstanceData">
            <summary>
            store for data passed between default and expanded states
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.OrmmaImpl.useCustomClose">
            <summary>
            whether to hide close bars or show them
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.#ctor(Microsoft.Advertising.WinRT.UI.ITaskInvoker,Microsoft.Advertising.WinRT.UI.RichMediaAdState)">
            <summary>
            constructor
            </summary>
            <param name="taskInvoker">platform specific task invoker</param>
            <param name="state">the starting state of ormma</param>      
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.#ctor(Microsoft.Advertising.WinRT.UI.ITaskInvoker,Microsoft.Advertising.WinRT.UI.IAdvertisingWebBrowser,Microsoft.Advertising.WinRT.UI.RichMediaAdState,System.Double,System.Double)">
            <summary>
            constructor
            </summary>
            <param name="taskInvoker">platform specific task invoker</param>
            <param name="advertisingWebBrowser">advertising web browser used for expanding, resizing etc</param>
            <param name="state">the starting state of ormma</param>
            <param name="width">the width of the rich media control</param>
            <param name="height">the height of the rich media control</param>       
        </member>
        <!-- Badly formed XML comment ignored for member "M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.Execute(System.String)" -->
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.InitializeOrmma">
            <summary>
            initialises ormma to a known state
            </summary>
            <returns>true if initialisation was successful, false otherwise</returns>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.Close">
            <summary>
            changes the state of the rich media ad dependant on it's current state.
            default: moves to hidden
            resized: moves to default
            expanded: moves to default if it had expanded from default, moves to resized if it was expanded from resized
            hidden: no change
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.Cleanup">
            <summary>
            performs any required cleanup
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.SetState(Microsoft.Advertising.WinRT.UI.RichMediaAdState)">
            <summary>
            updates the state of ormma and keeps track of the previous state
            </summary>
            <param name="state">that state to update to</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.SetOrmmaAdContainerSize(System.Double,System.Double)">
            <summary>
            Sets the size of the ad container.
            </summary>
            <param name="width">Width.</param>
            <param name="height">Height.</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.SetToPreviousState">
            <summary>
            updates the state of ormma and keeps track of the previous state
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.SetUseCustomClose(System.String)">
            <summary>
            sets whether to use close bands, SDK provided or a custom close button to
            exit full screen ad.
            </summary>
            <param name="prms">true</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.RaiseAdRenderedEvent">
            <summary>
            raises the AdRendered event to notify people the ad has displayed
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.SetUserEngaged(System.Collections.Generic.IDictionary{System.String,System.String})">
            <summary>
            sets the background properties to use during expand
            </summary>
            <param name="parameters">Dictionary containing required parameters (width,height,useCustomClose,lockOrientation) for expanding.</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.SetExpandProperties(System.Collections.Generic.IDictionary{System.String,System.String})">
            <summary>
            sets the background properties to use during expand
            </summary>
            <param name="parameters">Dictionary containing required parameters (width,height,useCustomClose,lockOrientation) for expanding.</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.Expand(System.Collections.Generic.IDictionary{System.String,System.String})">
            <summary>
            expands the current ad to the specified size
            </summary>
            <param name="parameters">Dictionary containing required parameters (url) for expanding.</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.Resize(System.Collections.Generic.IDictionary{System.String,System.String})">
            <summary>
            resizes the web browser to the size specified
            </summary>
            <param name="parameters">Dictionary containing required parameters (height, width) for expanding</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.Show">
            <summary>
            shows the ad if it was in the hidden state
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.Hide">
            <summary>
            hides the add if it was in the default state.
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.SendSms(System.Collections.Generic.IDictionary{System.String,System.String})">
            <summary>
            Initiates an SmsComposeTask with data from the rich media ad.
            </summary>
            <param name="parameters">Dictionary containing required parameters (recipient, body) for sending an SMS.</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.SendEmail(System.Collections.Generic.IDictionary{System.String,System.String})">
            <summary>
            Initiates EmailComposeTask with data from the rich media ad.
            </summary>
            <param name="parameters">Dictionary containing required parameters (recipient,subject,body) for sending an email.</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.BrowseToUrl(System.Collections.Generic.IDictionary{System.String,System.String})">
            <summary>
            Initiates a WebBrowserTask with data from the rich media ad.
            </summary>
            <param name="parameters">Dictionary containing required parameters (url) for browsing.</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.PlayMedia(System.Collections.Generic.IDictionary{System.String,System.String})">
            <summary>
            Initiates the media player with content from the rich media ad.
            </summary>
            <param name="parameters">Dictionary containing required parameters (url) for playing a video.</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.MakePhoneCall(System.Collections.Generic.IDictionary{System.String,System.String})">
            <summary>
            Initiates PhoneCallTask with data from the rich media ad.
            </summary>
            <param name="parameters">Dictionary containing required parameters (recipient) for making a call.</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.StorePicture(System.Collections.Generic.IDictionary{System.String,System.String})">
            <summary>
            stores a picture to the devices media library
            </summary>
            <param name="parameters">Dictionary containing required parameter (url) for making a call.</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.StartTiltAccelerometer(System.Collections.Generic.IDictionary{System.String,System.String})">
            <summary>
            updates the tilt value in the JS layer.
            </summary>
            <param name="parameters">contains an optional parameter 'listener'. if 'start' it updates the 
            the tilt value as it changes, if stop it stops updating, if not present it does nothing</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.StartShakeAccelerometer(System.Collections.Generic.IDictionary{System.String,System.String})">
            <summary>
            Starts monitoring and sending the shake events to client.
            </summary>
            <param name="parameters">contains an optional parameter 'listener'. if 'start' it updates the 
            the shake value as it changes, if stop it stops updating, if not present does nothing</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.SetupViewableChangedHandler(System.Collections.Generic.IDictionary{System.String,System.String})">
            <summary>
            Starts the monitoring if the ad is viewable or not
            </summary>
            <param name="parameters">contains an optional parameter 'listener'. if 'start' it raises the 
            the viewable changed event as it changes, if stop it stops raising the event.</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.OpenMap(System.Collections.Generic.IDictionary{System.String,System.String})">
            <summary>
            opens a map on a popup
            </summary>
            <param name="parameters">contains parameters POI (point of interest) and fullscreen</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.GetOrientation(System.Collections.Generic.IDictionary{System.String,System.String})">
            <summary>
            Updates the the web controls orientation variable or optional starts/stops listening
            for the orientation changed event.
            </summary>
            <param name="parameters">contains an optional parameter 'listener'. if 'start' it updates the 
            the orientation value as it changes, if stop it stops updating, if not present it updates the 
            orientation once.</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.Resize(System.Double,System.Double,Microsoft.Advertising.WinRT.UI.RichMediaAdState)">
            <summary>
            helper method for resizing, also updates state and size in the JS layer
            which triggers the appropriate events
            </summary>
            <param name="width"></param>
            <param name="height"></param>
            <param name="state"></param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.SetScreenSize">
            <summary>
            sets the screensize to use in ormma in ormma
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.RaiseRichMediaActionEvent(Microsoft.Advertising.WinRT.UI.RichMediaActionType)">
            <summary>
            Fires an event if there are any handlers.
            Currently this is a no-op. We previously thought we might report to server when ormma was used to make a call or send sms.
            We do not do this now. This can be removed completely if it is determined we will never need this event.
            </summary>
            <param name="action">action that occurred</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaImpl.DoRequest(System.Collections.Generic.IDictionary{System.String,System.String})">
            <summary>
            Issue request for the uri resource
            </summary>
            <param name="parameters">dictionary of parameters. URL is the resource to request. Display is Ormma parameter to specify how to handle response</param>
        </member>
        <member name="E:Microsoft.Advertising.WinRT.UI.OrmmaImpl.RichMediaAction">
            <summary>
            rich media actions, fired when user interacts with the ad
            </summary>
        </member>
        <member name="E:Microsoft.Advertising.WinRT.UI.OrmmaImpl.AdRendered">
            <summary>
            raised when the ad has rendered
            </summary>
        </member>
        <member name="P:Microsoft.Advertising.WinRT.UI.OrmmaImpl.ExpandedCloseFunction">
            <summary>
            method called when closed from expanded state
            this is typically a reference to a method on the WebBrowserView
            </summary>
        </member>
        <member name="P:Microsoft.Advertising.WinRT.UI.OrmmaImpl.State">
            <summary>
            returns the current state of the rich media ad (expanded, resized, hidden, default).
            </summary>
        </member>
        <member name="P:Microsoft.Advertising.WinRT.UI.OrmmaImpl.AdInstanceData">
            <summary>
            stores the ad instances state, both in current instance and the exapnded instance
            </summary>
        </member>
        <member name="P:Microsoft.Advertising.WinRT.UI.OrmmaImpl.CloseBandTotalHeight">
            <summary>
            gets the height to use for close bands
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaUtils.ValidateAndRemoveEmailList(System.String)">
            <summary>
            parses a list of email addresses in a string separated by a ',' or a ';', validates them
            and removes them from the string if not valid or are duplicates. eg 
            "test@example.com;test2.example.com,test3@example.com" would return
            "test@example.com;test3@example.com;"
            </summary>
            <param name="emailAddresses">email address list to parse</param>
            <returns>validated email addresses</returns>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaUtils.IsEmailValid(System.String)">
            <summary>
            verifies if an email is valid
            </summary>
            <param name="email">email address to validate</param>
            <returns>true if valid, false otherwise</returns>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaUtils.TryGetUriParameter(System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Uri@)">
            <summary>
            verifies url is valid and of a supported scheme
            </summary>
            <param name="parameters">paramters to query</param>
            <param name="parameterName">the name of the parameter to query</param>
            <param name="uri">value if parameter found</param>
            <returns>true if the parameter was found, false otherwise</returns>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaUtils.TryGetIntegerParameter(System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Int32@,System.Boolean)">
            <summary>
            attemps to get a value from the dictionary as a integer
            </summary>
            <param name="parameters">paramters to query</param>
            <param name="parameterName">the name of the parameter to query</param>
            <param name="value">value if parameter found</param>
            <returns>true if the parameter was found, false otherwise</returns>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaUtils.TryGetBooleanParameter(System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Boolean@)">
            <summary>
            attemps to get a value from the dictionary as a bool, returns false on error
            </summary>
            <param name="parameters">paramters to query</param>
            <param name="parameterName">the name of the parameter to query</param>
            <param name="value">value if parameter found</param>
            <returns>true if the parameter was found, false otherwise</returns>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaUtils.TryGetGuid(System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.Guid@)">
            <summary>
            attempts to get a Guid from the dictionary
            </summary>
            <param name="parameters">paramters to query</param>
            <param name="parameterName">the name of the parameter to query</param>
            <param name="value">value if parameter found</param>
            <returns>true if the parameter was found, false otherwise</returns>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.OrmmaUtils.ParseQueryString(System.String)">
            <summary>
            <![CDATA[Parses out parameters from data supplied "param1=value1&param2=value2" into a dictionary [{param1:value1},{param2:value2}]]]>
            </summary>
            <param name="queryString">string to be parsed</param>
            <returns>Dictionary containing parameter data.</returns>
        </member>
        <member name="T:Microsoft.Advertising.WinRT.UI.ResourceCache">
            <summary>
            loads resources from disk and caches them
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.ResourceCache.OrmmaKey">
            <summary>
            unique path to the ormma.js resource
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.ResourceCache.BootstrapKey">
            <summary>
            unique path to the bootstrap.html resource
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.ResourceCache.instance">
            <summary>
            private instance of the ResourceCache
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.ResourceCache.cachedResources">
            <summary>
            store for the loaded resources
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.ResourceCache.cacheAddLock">
            <summary>
            lock to control access for cache adds
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.ResourceCache.#ctor">
            <summary>
            constructor
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.ResourceCache.GetResource(System.String)">
            <summary>
            loads a text resource from the file system and caches it if found
            </summary>
            <param name="location">the location of the resource to load</param>
            <returns>the loaded resource or null if not found</returns>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.ResourceCache.LoadResource(System.String)">
            <summary>
            attemps to load a resource
            </summary>
            <param name="resourcePath">unique path to the resource</param>
            <returns>the loaded resource or an empty string if the resource was not found</returns>
        </member>
        <member name="P:Microsoft.Advertising.WinRT.UI.ResourceCache.Instance">
            <summary>
            returns the instance of the ResourceCache
            </summary>
        </member>
        <member name="T:Microsoft.Advertising.WinRT.UI.RichMediaActionType">
            <summary>
            types of rich media actions 
            </summary>
        </member>
        <member name="T:Microsoft.Advertising.WinRT.UI.RichMediaEventArgs">
            <summary>
            RichMediaEventArgs
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.RichMediaEventArgs.#ctor(Microsoft.Advertising.WinRT.UI.RichMediaActionType)">
            <summary>
            Constructor
            </summary>
            <param name="action">the action that occurred</param>
        </member>
        <member name="P:Microsoft.Advertising.WinRT.UI.RichMediaEventArgs.Action">
            <summary>
            the action the event represents
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.UIUtilities.GetControlScreenPosition(Windows.UI.Xaml.UIElement)">
            <summary>
            returns the position of the element relative to the main window
            see: http://forums.silverlight.net/p/12160/39074.aspx
            </summary>
            <returns>the position of the element</returns>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.UIUtilities.IsControlOnScreen(Windows.UI.Xaml.FrameworkElement,System.Double)">
            <summary>
            returns true if at least x% of the ad area is on screen, false otherwise
            </summary>
            <param name="maxAllowedOffscreen">threshold percent to determing if control is on screen or not</param>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.WebBrowserView.popup">
            <summary>
            popup that holds the popup content
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.WebBrowserView.overlayCanvas">
            <summary>
            transparent overlay canvas that holds the close button and popup content
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.WebBrowserView.webBrowser">
            <summary>
            the webbrowser that contains the content to display
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.WebBrowserView.expandProperties">
            <summary>
            the expand properties, used for positioning and orientation etc
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.WebBrowserView.webBrowserOldParent">
            <summary>
            for storing the old and new parents of the AdvertisingWebBrowser
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.WebBrowserView.closeBandHeight">
            <summary>
            stores the height to be used for the close bands, typically this
            is 50px or 0px
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.WebBrowserView.#ctor(Microsoft.Advertising.WinRT.UI.ExpandProperties,Microsoft.Advertising.WinRT.UI.AdvertisingWebBrowser,System.Double)">
            <summary>
            Constructor of WebBrowserView class.
            Initialize the web browser control, the popup view and the application bar.
            </summary>
            <param name="expandProps">properties to use when expanding</param>
            <param name="advertisingWebBrowser">web browser to host in the popup</param>
            <param name="closeBandHeight">height to reserve on screen for the close bands</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.WebBrowserView.SetExpandProperties(Microsoft.Advertising.WinRT.UI.ExpandProperties)">
            <summary>
            Sets the ExpandProperties for the expanded ad. This method will size the ad based on the properties and center 
            it on the screen. This is used when initially expanding and also when the expanded ad needs to be resized.
            </summary>
            <param name="expandProps">properties to use when expanding</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.WebBrowserView.Show">
            <summary>
            Show the popup
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.WebBrowserView.ClosePopup">
            <summary>
            closes the popup and raises the closed event, if overridden it should 
            be called after derived classes have performed their close task.
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.WebBrowserView.PositionWebBrowser(System.Double,System.Double)">
            <summary>
            positions the expanded browser in the popup, if the height or width is greater
            than the screen size the ad "...will be centered vertically and horizontally causing 
            outlying areas to be cropped." as per
            http://code.google.com/p/ormma/wiki/ORMMA_JavaScript#expand
            </summary>
            <param name="width">display area width</param>
            <param name="height">display area height</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.WebBrowserView.CloseButtonHandler(System.Object,Windows.UI.Xaml.Input.TappedRoutedEventArgs)">
            <summary>
            handler for the soft close button (X) when present
            </summary>
            <param name="sender">Sender of the event</param>
            <param name="e">Event argument</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.WebBrowserView.SizeChangedHandler(System.Object,Windows.UI.Core.WindowSizeChangedEventArgs)">
            <summary>
            Event handler when the size of the main windows changes
            </summary>
            <param name="sender">Sender of the event</param>
            <param name="e">arguments to the event</param>
        </member>
        <member name="E:Microsoft.Advertising.WinRT.UI.WebBrowserView.Closed">
            <summary>
            event fired when popup is closed
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.errorReportCount">
            <summary>
            used to prevent feedback loop to javascript layer, this scenario could happen when 
            subscribing to the error event and in the handler for the error event you generate
            the same error again.
            </summary>
        </member>
        <member name="F:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.lastNetworkStatus">
            <summary>
            keeps track of last network status for event handling
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.#ctor(Windows.UI.Xaml.Controls.WebView)">
            <summary>
            constructor
            </summary>
            <param name="wv">WebView for invokeing script commands on</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.SendSms(System.String,System.String)">
            <summary>
            initiates sending an sms
            </summary>
            <param name="to">recipient phone number</param>
            <param name="body">message body</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.SendEmail(System.String,System.String,System.String)">
            <summary>
            initiates sending an email
            </summary>
            <param name="to">recipient email address</param>
            <param name="subject">email subject</param>
            <param name="body">email body</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.BrowseToUrl(System.Uri)">
            <summary>
            initiates browsing to a url
            </summary>
            <param name="uri">location to browse to</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.PlayMedia(System.Uri)">
            <summary>
            initiates playing a video
            </summary>
            <param name="uri">url of video to play</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.MakePhoneCall(System.String)">
            <summary>
            initiates a phone call
            </summary>
            <param name="phoneNumber">recipient phone number</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.StartTiltTracking">
            <summary>
            Starts the tracking of accelerometer tilt data.
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.StopTiltTracking">
            <summary>
            Stops the tracking of accelerometer tilt data.
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.GetTilt">
            <summary>
            Reports the current tilt coordinates to ormma once for GetTilt call.
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.StartShakeTracking">
            <summary>
            Starts the tracking of accelerometer shake data.
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.StopShakeTracking">
            <summary>
            Stops the tracking of accelerometer shake data.
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.UpdateOrientation">
            <summary>
            updates the orientation in the WebView
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.StartOrientationMonitoring">
            <summary>
            starts listening to the orientation changed event
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.StopOrientationMonitoring">
            <summary>
            stops listening to the orientation changed event
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.CleanUp">
            <summary>
            cleans up resoureces used by the class
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.ReportError(System.String,System.String)">
            <summary>
            Reports an error to the ad in the web browser via javascript.
            </summary>
            <param name="function">the ORMMA method the error occured in</param>
            <param name="message">the error message</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.InvokeScript(System.String,System.String[])">
            <summary>
            invokes a javascript function
            </summary>
            <param name="function">the function to call</param>
            <param name="parameters">parameters to pass to the function</param>
            <returns>the value returned by the javascript call</returns>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.StorePicture(System.Uri)">
            <summary>
            Stores a picture to the media library.
            </summary>
            <param name="uri">location of the image to store</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.SetScreenSize(System.Double,System.Double)">
            <summary>
            sets the screen size for the 
            </summary>
            <param name="width"></param>
            <param name="height"></param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.AddSizeChangedHandler">
            <summary>
            adds a handler to the screen size change event to update ormma on rotations.
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.DoRequest(System.String,System.String)">
            <summary>
            Perform web request 
            </summary>
            <param name="url">url to request</param>
            <param name="display">ormma display parameter to specify how to handle response</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.GetNetwork">
            <summary>
            Get the network type
            </summary>
            <returns>network type</returns>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.StartViewableChangedMonitoring">
            <summary>
            starts monitoring the viewable state of the ad
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.StopViewableChangedMonitoring">
            <summary>
            stops monitoring the viewable state of the ad
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.PageOrientationAsInt">
            <summary>
            returns the orientation of the phone in the ormma definition
            -1 - device orientation unknown
            0 - portrait, 
            90 - clockwise to landscape
            180 - portrait upside down
            270 - counter clockwise to landscape
            </summary>
            <returns> orientation as an integer</returns>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.OrientationChangedHandler(System.Object)">
            <summary>
            Handles orientation changed events updating the ormma library.
            </summary>
            <param name="sender">The source of the event.</param>
            <param name="e">The event data.</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.AccelerometerShakenHandler(Windows.Devices.Sensors.Accelerometer,Windows.Devices.Sensors.AccelerometerShakenEventArgs)">
            <summary>
            Fired then the accelerometer has been shaken.
            </summary>
            <param name="sender"></param>
            <param name="args"></param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.AccelerometerReadingChangedHandler(Windows.Devices.Sensors.Accelerometer,Windows.Devices.Sensors.AccelerometerReadingChangedEventArgs)">
            <summary>
            Fired when the accelerometer tilt changes.
            </summary>
            <param name="sender"></param>
            <param name="args"></param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.StopAccelerometerMonitoring">
            <summary>
            Cleans up the accelerometer by unwiring all the events and setting it to null.
            </summary>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.SizeChangedHandler(System.Object,Windows.UI.Core.WindowSizeChangedEventArgs)">
            <summary>
            Event handler when the size of the main windows changes
            </summary>
            <param name="sender">Sender of the event</param>
            <param name="e">arguments to the event</param>
        </member>
        <member name="M:Microsoft.Advertising.WinRT.UI.Win8TaskInvoker.NetworkStatusChangedHandler(System.Object)">
            <summary>
            event handler to notifiy ormma on network change event
            </summary>
            <param name="sender">sender</param>
        </member>
    </members>
<Signature xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315"/><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1"/><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature"/><Transform Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315"/></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/><DigestValue>LpBNR1Ky/3T1O7AZBMEv7s8b6fc=</DigestValue></Reference></SignedInfo><SignatureValue>
    jghCDRK6vC0MIQIn8I9mHv/rsh1HM+P65misruBVRR3jc179e0ozHfxbK/cuZZ3BvZYeRsNB
    Zdlv8xrKXADHAdu1KN/Rmnu8D1wH5M1bH95SKJkxNOh/BppTz6LPzPJKplA73mr+wJ8k1IfL
    O2AqJ3rufjgFw57bkO6eMxWjrJODCAjdtoGIPSlkN0RrBYvBrk7OEil5HtsZrUaZMvgpq6QM
    c8wGZcpfWk9qnQU92gxFTXA4s0gLPWE5UyoH5ybnuaJNHncdcFCvOjqsxfu8r6Fq3NlitEhK
    HRxPqNLlTCXKI+5CxabmcG+YR6ppxUauldcWNGOyV1zRlMu5gpvQLQ==
  </SignatureValue><KeyInfo>
      <KeyValue>
        <RSAKeyValue>
          <Modulus>
            s3R00II8h6ea1I6yBEKAlyUu5EHOk2M2XxPytHiYgMYofsyKE+89N4w7CaDYFMVcXtipHX8B
            wbOYG1B37P7qfEXPf+EhDsWEyp8Pa7MJOLd0xFcevvBIqHla3w6bHJqovMhStQxpj4TOcVV7
            /wkgv0B3NyEwdFuV33fLoOXBchIGPfLIVWyvwftqFifI9bNh49nOGw8e9OTNTDRsPkcR5wIr
            XxR6BAf11z2L22d9Vz41622NAUCNGoeW4g93TIm6OJz7jgKR2yIP5dA2qbg3RdAq/JaNwWBx
            M6WIsfbCBDCHW8PXL7J5EdiLZWKiihFmXX5/BXpzih96heXNKBDRPQ==
          </Modulus>
          <Exponent>AQAB</Exponent>
        </RSAKeyValue>
      </KeyValue>
      <X509Data>
        <X509Certificate>
          MIIEqTCCA5GgAwIBAgITMwAAAIhZDjxRH+JqZwABAAAAiDANBgkqhkiG9w0BAQUFADB5MQsw
          CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG
          A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSMwIQYDVQQDExpNaWNyb3NvZnQgQ29kZSBT
          aWduaW5nIFBDQTAeFw0xMjA3MjYyMDUwNDFaFw0xMzEwMjYyMDUwNDFaMIGDMQswCQYDVQQG
          EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMV
          TWljcm9zb2Z0IENvcnBvcmF0aW9uMQ0wCwYDVQQLEwRNT1BSMR4wHAYDVQQDExVNaWNyb3Nv
          ZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCzdHTQgjyH
          p5rUjrIEQoCXJS7kQc6TYzZfE/K0eJiAxih+zIoT7z03jDsJoNgUxVxe2KkdfwHBs5gbUHfs
          /up8Rc9/4SEOxYTKnw9rswk4t3TEVx6+8EioeVrfDpscmqi8yFK1DGmPhM5xVXv/CSC/QHc3
          ITB0W5Xfd8ug5cFyEgY98shVbK/B+2oWJ8j1s2Hj2c4bDx705M1MNGw+RxHnAitfFHoEB/XX
          PYvbZ31XPjXrbY0BQI0ah5biD3dMibo4nPuOApHbIg/l0DapuDdF0Cr8lo3BYHEzpYix9sIE
          MIdbw9cvsnkR2ItlYqKKEWZdfn8FenOKH3qF5c0oENE9AgMBAAGjggEdMIIBGTATBgNVHSUE
          DDAKBggrBgEFBQcDAzAdBgNVHQ4EFgQUJls+W12WX+L3d4h/XkVTWKguW7gwDgYDVR0PAQH/
          BAQDAgeAMB8GA1UdIwQYMBaAFMsR6MrStBZYAck3LjMWFrlMmgofMFYGA1UdHwRPME0wS6BJ
          oEeGRWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY0NvZFNp
          Z1BDQV8wOC0zMS0yMDEwLmNybDBaBggrBgEFBQcBAQROMEwwSgYIKwYBBQUHMAKGPmh0dHA6
          Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljQ29kU2lnUENBXzA4LTMxLTIwMTAu
          Y3J0MA0GCSqGSIb3DQEBBQUAA4IBAQAP3kBJiJHRMTejRDhpsmor1JH7aIWuWLseDI9W+pnX
          ypcnTOiFjnlpLOS9lj/lcGaXlTBlKa3Gyqz1D3moZ79p9A+X4woPv+6WdimyItAzxv+LSa2u
          sv2/JervJ1DA6xn4GmRqoOEXWa/xz+yBqInosdIUBuNqbXRSZNqWlCpcaWsf7QWZGtzoZaqI
          GxWVGtOkUZb9VZX4Y42fFAyxnn9KBP/DZq0Kr66k3mP68OrDs7Lrh9vFOK22c9J4ZOrsIVtr
          O9ZEIvSBUqUrQymLDKEqcYJCy6sbftSlp6333vdGms5DOegqU+3PQOR3iEK/RxbgpTZq76ca
          jTo9MwT2JSAj
        </X509Certificate>
      </X509Data>
      <X509Data>
        <X509Certificate>
          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
        </X509Certificate>
      </X509Data>
      <X509Data>
        <X509Certificate>
          MIIFvDCCA6SgAwIBAgIKYTMmGgAAAAAAMTANBgkqhkiG9w0BAQUFADBfMRMwEQYKCZImiZPy
          LGQBGRYDY29tMRkwFwYKCZImiZPyLGQBGRYJbWljcm9zb2Z0MS0wKwYDVQQDEyRNaWNyb3Nv
          ZnQgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcNMTAwODMxMjIxOTMyWhcNMjAwODMx
          MjIyOTMyWjB5MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMH
          UmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSMwIQYDVQQDExpNaWNy
          b3NvZnQgQ29kZSBTaWduaW5nIFBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB
          ALJyWVwZMGS/HZpgICBCmXZTbD4b1m/My/Hqa/6XFhDg3zp0gxq3L6Ay7P/ewkJOI9VyANs1
          VwqJyq4gSfTwaKxNS42lvXlLcZtHB9r9Jd+ddYjPqnNEf9eB2/O98jakyVxF3K+tPeAoaJca
          p6Vyc1bxF5Tk/TWUcqDWdl8ed0WDhTgW0HNbBbpnUo2lsmkv2hkL/pJ0KeJ2L1TdFDBZ+NKN
          Yv3LyV9GMVC5JxPkQDDPcikQKCLHN049oDI9kM2hOAaFXE5WgigqBTK3S9dPY+fSLWLxRT3n
          rAgA9kahntFbjCZT6HqqSvJGzzc8OJ60d1ylF56NyxGPVjzBrAlfA9MCAwEAAaOCAV4wggFa
          MA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMsR6MrStBZYAck3LjMWFrlMmgofMAsGA1Ud
          DwQEAwIBhjASBgkrBgEEAYI3FQEEBQIDAQABMCMGCSsGAQQBgjcVAgQWBBT90TFO0yaKleGY
          YDuoMW+mPLzYLTAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTAfBgNVHSMEGDAWgBQOrIJg
          QFYnl+UlE/wq4QpTlVnkpDBQBgNVHR8ESTBHMEWgQ6BBhj9odHRwOi8vY3JsLm1pY3Jvc29m
          dC5jb20vcGtpL2NybC9wcm9kdWN0cy9taWNyb3NvZnRyb290Y2VydC5jcmwwVAYIKwYBBQUH
          AQEESDBGMEQGCCsGAQUFBzAChjhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRz
          L01pY3Jvc29mdFJvb3RDZXJ0LmNydDANBgkqhkiG9w0BAQUFAAOCAgEAWTk+fyZGr+tvQLEy
          tWrrDi9uqEn361917Uw7LddDrQv+y+ktMaMjzHxQmIAhXaw9L0y6oqhWnONwu7i0+Hm1SXL3
          PupBf8rhDBdpy6WcIC36C1DEVs0t40rSvHDnqA2iA6VW4LiKS1fylUKc8fPv7uOGHzQ8uFaa
          8FMjhSqkghyT4pQHHfLiTviMocroE6WRTsgb0o9ylSpxbZsa+BzwU9ZnzCL/XB3Nooy9J7J5
          Y1ZEolHN+emjWFbdmwJFRC9f9Nqu1IIybvyklRPk62nnqaIsvsgrEA5ljpnb9aL6EiYJZTiU
          8XofSrvR4Vbo0HiWGFzJNRZf3ZMdSY4tvq00RBzuEBUaAF3dNVshzpjHCe6FDoxPbQ4TTj18
          KUicctHzbMrB7HCjV5JXfZSNoBtIA1r3z6NnCnSlNu0tLxfI5nI3EvRvsTxngvlSso0zFmUe
          DordEN5k9G/ORtTTF+l5xAS00/ss3x+KnqwK+xMnQK3k+eGpf0a7B2BHZWBATrBC7E7ts3Z5
          2Ao0CW0cgDEf4g5U3eWh++VHEK1kmP9QFi58vwUheuKVQSdpw5OPlcmN2Jshrg1cnPCiroZo
          gwxqLbt2awAdlq3yFnv2FoMkuYjPaqhHMS+a3ONxPdcAfmJH0c6IybgY+g5yjcGjPa8CQGr/
          aZuW4hCoELQ3UAjWwz0=
        </X509Certificate>
      </X509Data>
    </KeyInfo><Object id="ts-countersig"><X509Data><X509Certificate>MIIEmjCCA4KgAwIBAgIKYQd/NAAAAAAADzANBgkqhkiG9w0BAQUFADB5MQswCQYDVQQGEwJVUzET
MBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0
IENvcnBvcmF0aW9uMSMwIQYDVQQDExpNaWNyb3NvZnQgVGltZXN0YW1waW5nIFBDQTAeFw0xMjAx
MDkyMTUzNTdaFw0xMzA0MDkyMTUzNTdaMIGzMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGlu
Z3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMQ0w
CwYDVQQLEwRNT1BSMScwJQYDVQQLEx5uQ2lwaGVyIERTRSBFU046QkJFQy0zMENBLTJEQkUxJTAj
BgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2UwggEiMA0GCSqGSIb3DQEBAQUAA4IB
DwAwggEKAoIBAQC4NLWZDdis9H6Lq0JbmEMp+WbE4dV3k/+sHIrSisIr1QLK2cGIO5ba8NZdKszQ
iBzep3Zx2WckJrPIjD3RnB75xUC7HjA+NH9cMO4rnRF08ldj6I2wmErxWcJ6R8FM9RG7ssXqxZ3C
1C/x1ldhUr584siY/R4JukggratNRLOI54BoD/2Ed+1sUDupLEK+1NBbdLOjPn7J55SUAv6YHVRM
jG2OKP3o7zbLXYONHAN2Ot3PLh9Enz+58n/BOdN2vipxEIhYhb6pnE423tvIkjfQs+689hO5WXDw
qgpQkK+omYEnb1paHjvGzQgg5l6Pqiz4kkxUOcslsTGYCvXmPNB1AgMBAAGjgegwgeUwHQYDVR0O
BBYEFNBtWpkbsctpMfzVPPbfHMxiz0DAMB8GA1UdIwQYMBaAFG/oTj+XuTSrS4aPvJzqrDtBQ8bQ
MEQGA1UdHwQ9MDswOaA3oDWGM2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1
Y3RzL3RzcGNhLmNybDBIBggrBgEFBQcBAQQ8MDowOAYIKwYBBQUHMAKGLGh0dHA6Ly93d3cubWlj
cm9zb2Z0LmNvbS9wa2kvY2VydHMvdHNwY2EuY3J0MBMGA1UdJQQMMAoGCCsGAQUFBwMIMA0GCSqG
SIb3DQEBBQUAA4IBAQCzERCbfFyFGDJIF5SbejdYYnLX2I35rVpA0qX3CLrTSekd0ENrpA3qH1Ly
ya4vOCaD/aZeRfl5jgYLGjzx/7VjgEYER46gm0wAy1t7c3QyxB0SbGxBb0uk2AAGi6KDyIDoJfZ9
NkVfOyxKR6AyvtuZ37ynmzfga+RaNNDkDOZp4gB01y98zykijfwCgbj1xZ+31QYZLv4ngSL6iG4a
s0Fm8y+LB/Z7nXz9CADO0q5tpM3Bzf9SlB7TYgrBjhu0QjGEXFes4kL+mTO1YE5zZYjNXtY0bkEE
oWoR+Qcdpb3rzEm2SYQv8YO7xSDuC56LxGFOOjUJHmCnBX6JkqCJ16Ar</X509Certificate></X509Data><X509Data><X509Certificate>MIIEnTCCA4WgAwIBAgIQaguZT8AAJasR20UfWHpnojANBgkqhkiG9w0BAQUFADBwMSswKQYDVQQL
EyJDb3B5cmlnaHQgKGMpIDE5OTcgTWljcm9zb2Z0IENvcnAuMR4wHAYDVQQLExVNaWNyb3NvZnQg
Q29ycG9yYXRpb24xITAfBgNVBAMTGE1pY3Jvc29mdCBSb290IEF1dGhvcml0eTAeFw0wNjA5MTYw
MTA0NDdaFw0xOTA5MTUwNzAwMDBaMHkxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9u
MRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xIzAhBgNV
BAMTGk1pY3Jvc29mdCBUaW1lc3RhbXBpbmcgUENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB
CgKCAQEA3Ddu+6/IQkpxGMjOSD5TwPqrFLosMrsST1LIg+0+M9lJMZIotpFk4B9QhLrCS9F/Bfjv
db6Lx6jVrmlwZngnZui2t++Fuc3uqv0SpAtZIikvz0DZVgQbdrVtZG1KVNvd8d6/n4PHgN9/TAI3
lPXAnghWHmhHzdnAdlwvfbYlBLRWW2ocY/+AfDzu1QQlTTl3dAddwlzYhjcsdckO6h45CXx2/p1s
bnrg7D6Pl55xDl8qTxhiYDKe0oNOKyJcaEWL3i+EEFCy+bUajWzuJZsT+MsQ14UO9IJ2czbGlXqi
zGAG7AWwhjO3+JRbhEGEWIWUbrAfLEjMb5xD4GrofyaOawIDAQABo4IBKDCCASQwEwYDVR0lBAww
CgYIKwYBBQUHAwgwgaIGA1UdAQSBmjCBl4AQW9Bw72lyniNRfhSyTY7/y6FyMHAxKzApBgNVBAsT
IkNvcHlyaWdodCAoYykgMTk5NyBNaWNyb3NvZnQgQ29ycC4xHjAcBgNVBAsTFU1pY3Jvc29mdCBD
b3Jwb3JhdGlvbjEhMB8GA1UEAxMYTWljcm9zb2Z0IFJvb3QgQXV0aG9yaXR5gg8AwQCLPDyIEdE+
9mPs30AwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFG/oTj+XuTSrS4aPvJzqrDtBQ8bQMBkG
CSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MA0G
CSqGSIb3DQEBBQUAA4IBAQCUTRExwnxQuxGOoWEHAQ6McEWN73NUvT8JBS3/uFFThRztOZG3o1YL
3oy2OxvR+6ynybexUSEbbwhpfmsDoiJG7Wy0bXwiuEbThPOND74HijbB637pcF1Fn5LSzM7djsDh
vyrNfOzJrjLVh7nLY8Q20Rghv3beO5qzG3OeIYjYtLQSVIz0nMJlSpooJpxgig87xxNleEi7z62D
Ok+wYljeMOnpOR3jifLaOYH5EyGMZIBjBgSW8poCQy97Roi6/wLZZflK3toDdJOzBW4MzJ3cKGF8
SPEXnBEhOAIch6wGxZYyuOVAxlM9vamJ3uhmN430IpaczLB3VFE61nJEsiP2</X509Certificate></X509Data><CounterSignature xmlns="http://schemas.microsoft.com/xmldsig/timestamp/2003" ts-format="cms-timestamp-message">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</CounterSignature></Object></Signature></doc>

Commits for Nextrek/Windows8/GuidaTv/GuidaTv/bin/Debug/AppX/Microsoft.Advertising.WinRT.UI.xml

Diff revisions: vs.
Revision Author Commited Message
21 JMBauan picture JMBauan Wed 26 Jun, 2013 10:48:36 +0000