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 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396
|
<?xml version="1.0"?>
<doc>
<assembly>
<name>Google.GData.YouTube</name>
</assembly>
<members>
<member name="T:Google.GData.YouTube.FriendsFeed">
<summary>
A user's contacts feed lists all of the contacts for a specified user.
To request the currently logged-in user's contact list, send an HTTP
GET request to the following URL.
https://gdata.youtube.com/feeds/api/users/default/contacts
To request another user's contact list, send an HTTP GET request to the following URL.
https://gdata.youtube.com/feeds/api/users/username/contacts
In the URL above, you must replace the text username with the user's YouTube username.
Contacts can be classified as either Friends or Family.
</summary>
</member>
<member name="T:Google.GData.YouTube.YouTubeFeed">
<summary>
The YouTube Data API allows applications to perform functions normally
executed on the YouTube website. The API enables your application to search
for YouTube videos and to retrieve standard video feeds, comments and video
responses.
In addition, the API lets your application upload videos to YouTube or
update existing videos. Your can also retrieve playlists, subscriptions,
user profiles and more. Finally, your application can submit
authenticated requests to enable users to create playlists,
subscriptions, contacts and other account-specific entities.
</summary>
</member>
<member name="M:Google.GData.YouTube.YouTubeFeed.#ctor(System.Uri,Google.GData.Client.IService)">
<summary>
default constructor
</summary>
<param name="uriBase">the base URI of the feedEntry</param>
<param name="iService">the Service to use</param>
</member>
<member name="M:Google.GData.YouTube.YouTubeFeed.CreateFeedEntry">
<summary>
this needs to get implemented by subclasses
</summary>
<returns>AtomEntry</returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeFeed.HandleExtensionElements(Google.GData.Client.ExtensionElementEventArgs,Google.GData.Client.AtomFeedParser)">
<summary>
gets called after we already handled the custom entry, to handle all
other potential parsing tasks
</summary>
<param name="e"></param>
<param name="parser">the atom feed parser used</param>
</member>
<member name="M:Google.GData.YouTube.FriendsFeed.#ctor(System.Uri,Google.GData.Client.IService)">
<summary>
default constructor
</summary>
<param name="uriBase">the base URI of the feedEntry</param>
<param name="iService">the Service to use</param>
</member>
<member name="M:Google.GData.YouTube.FriendsFeed.CreateFeedEntry">
<summary>
this needs to get implemented by subclasses
</summary>
<returns>AtomEntry</returns>
</member>
<member name="T:Google.GData.YouTube.YouTubeService">
<summary>
The YouTube Data API allows applications to perform functions normally
executed on the YouTube website. The API enables your application to search
for YouTube videos and to retrieve standard video feeds, comments and video
responses.
In addition, the API lets your application upload videos to YouTube or
update existing videos. Your can also retrieve playlists, subscriptions,
user profiles and more. Finally, your application can submit
authenticated requests to enable users to create playlists,
subscriptions, contacts and other account-specific entities.
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeService.DefaultCategory">
<summary>
default category for YouTube
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeService.AuthenticationHandler">
<summary>
the YouTube authentication handler URL
</summary>
</member>
<member name="M:Google.GData.YouTube.YouTubeService.#ctor(System.String,System.String,System.String)">
<summary>
obsolete constructor
</summary>
<param name="applicationName">the application name</param>
<param name="client">the client identifier</param>
<param name="developerKey">the developerKey</param>///
</member>
<member name="M:Google.GData.YouTube.YouTubeService.#ctor(System.String,System.String)">
<summary>
default constructor
</summary>
<param name="applicationName">the application name</param>
<param name="developerKey">the developerKey</param>///
</member>
<member name="M:Google.GData.YouTube.YouTubeService.#ctor(System.String)">
<summary>
readonly constructor
</summary>
<param name="applicationName">the application identifier</param>
</member>
<member name="M:Google.GData.YouTube.YouTubeService.Query(Google.GData.YouTube.YouTubeQuery)">
<summary>
overloaded to create typed version of Query
</summary>
<param name="feedQuery"></param>
<returns>EventFeed</returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeService.GetPlaylist(Google.GData.YouTube.YouTubeQuery)">
<summary>
returns a playlist feed based on a youtubeQuery
</summary>
<param name="feedQuery"></param>
<returns>EventFeed</returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeService.GetFriends(Google.GData.YouTube.YouTubeQuery)">
<summary>
returns a playlist feed based on a youtubeQuery
</summary>
<param name="feedQuery"></param>
<returns>EventFeed</returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeService.GetPlaylists(Google.GData.YouTube.YouTubeQuery)">
<summary>
returns a playlists feed based on a youtubeQuery
</summary>
<param name="feedQuery"></param>
<returns>EventFeed</returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeService.GetShows(Google.GData.YouTube.YouTubeQuery)">
<summary>
returns a shows feed based on a youtubeQuery
</summary>
<param name="feedQuery"></param>
<returns>EventFeed</returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeService.GetShowSeasons(Google.GData.YouTube.YouTubeQuery)">
<summary>
returns a show season feed based on a youtubeQuery
</summary>
<param name="feedQuery"></param>
<returns>EventFeed</returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeService.GetSubscriptions(Google.GData.YouTube.YouTubeQuery)">
<summary>
returns a subscription feed based on a youtubeQuery
</summary>
<param name="feedQuery"></param>
<returns>EventFeed</returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeService.GetMessages(Google.GData.YouTube.YouTubeQuery)">
<summary>
returns a message feed based on a youtubeQuery
</summary>
<param name="feedQuery"></param>
<returns>EventFeed</returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeService.Query(Google.GData.YouTube.ActivitiesQuery)">
<summary>
overloaded to create typed version of Query. Returns an
Activities feed
</summary>
<param name="feedQuery"></param>
<returns>ActivitiesFeed</returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeService.Upload(System.String,Google.GData.YouTube.YouTubeEntry)">
<summary>
upload a new video to this users youtube account
</summary>
<param name="userName">the username (account) to use</param>
<param name="entry">the youtube entry</param>
<returns></returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeService.Upload(Google.GData.YouTube.YouTubeEntry)">
<summary>
upload a new video to the default/authenticated account
</summary>
<param name="entry">the youtube entry</param>
<returns></returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeService.InitVersionInformation">
<summary>
by default all services now use version 1 for the protocol.
this needs to be overridden by a service to specify otherwise.
YouTube uses version 2
</summary>
<returns></returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeService.FormUpload(Google.GData.YouTube.YouTubeEntry)">
<summary>
Method for browser-based upload, gets back a non-Atom response
</summary>
<param name="newEntry">The YouTubeEntry containing the metadata for a video upload</param>
<returns>A FormUploadToken object containing an upload token and POST url</returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeService.OnRequestFactoryChanged">
<summary>
notifier if someone changes the requestfactory of the service
</summary>
</member>
<member name="M:Google.GData.YouTube.YouTubeService.OnNewFeed(System.Object,Google.GData.Client.ServiceEventArgs)">
<summary>eventchaining. We catch this by from the base service, which
would not by default create an atomFeed</summary>
<param name="sender"> the object which send the event</param>
<param name="e">FeedParserEventArguments, holds the feedentry</param>
<returns> </returns>
</member>
<member name="T:Google.GData.YouTube.YouTubeEntry">
<summary>
Entry API customization class for defining entries in a YouTubeFeed feed.
</summary>
</member>
<member name="T:Google.GData.YouTube.YouTubeBaseEntry">
<summary>
this class only holds a few helper methods for other entry classes inside the youtube namespace
</summary>
</member>
<member name="M:Google.GData.YouTube.YouTubeBaseEntry.getYouTubeExtension(System.String)">
<summary>
instead of having 20 extension elements
we have one string based getter
usage is: entry.getPhotoExtension("albumid") to get the element
</summary>
<param name="extension">the name of the extension to look for</param>
<returns>SimpleElement, or NULL if the extension was not found</returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeBaseEntry.getYouTubeExtensionValue(System.String)">
<summary>
instead of having 20 extension elements
we have one string based getter
usage is: entry.getPhotoExtensionValue("albumid") to get the elements value
</summary>
<param name="extension">the name of the extension to look for</param>
<returns>value as string, or NULL if the extension was not found</returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeBaseEntry.setYouTubeExtension(System.String,System.String)">
<summary>
instead of having 20 extension elements
we have one string based setter
usage is: entry.setYouTubeExtension("albumid") to set the element
this will create the extension if it's not there
note, you can ofcourse, just get an existing one and work with that
object:
SimpleElement e = entry.getPhotoExtension("albumid");
e.Value = "new value";
or
entry.setPhotoExtension("albumid", "new Value");
</summary>
<param name="extension">the name of the extension to look for</param>
<param name="newValue">the new value for this extension element</param>
<returns>SimpleElement, either a brand new one, or the one
returned by the service</returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeBaseEntry.getDescription">
<summary>
description is used in several subclasses. with the version switch it makes sense to move this here to have the same code while it
is still supported
</summary>
<returns></returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeBaseEntry.setDescription(System.String)">
<summary>
description is used in several subclasses. with the version switch it makes sense to move this here to have the same code while it
is still supported
</summary>
<returns></returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeEntry.#ctor">
<summary>
Constructs a new YouTubeEntry instance
</summary>
</member>
<member name="M:Google.GData.YouTube.YouTubeEntry.addYouTubeEntryExtensions">
<summary>
helper method to add extensions to the evententry
</summary>
</member>
<member name="M:Google.GData.YouTube.YouTubeEntry.Update">
<summary>
Updates this YouTubeEntry.
</summary>
<returns>the updated YouTubeEntry or null</returns>
</member>
<member name="P:Google.GData.YouTube.YouTubeEntry.AccessControls">
<summary>
property accessor for the Access Control Collection
</summary>
</member>
<member name="P:Google.GData.YouTube.YouTubeEntry.Episode">
<summary>
getter/setter for the Episode extension element
</summary>
</member>
<member name="P:Google.GData.YouTube.YouTubeEntry.Location">
<summary>
getter/setter for the GeoRssWhere extension element
</summary>
</member>
<member name="P:Google.GData.YouTube.YouTubeEntry.Media">
<summary>
returns the media:rss group container element
</summary>
</member>
<member name="P:Google.GData.YouTube.YouTubeEntry.Statistics">
<summary>
returns the yt:statistics element
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.YouTube.YouTubeEntry.Comments">
<summary>
property accessor for the Comments
</summary>
</member>
<member name="P:Google.GData.YouTube.YouTubeEntry.Rating">
<summary>
returns the gd:rating element
</summary>
<returns></returns>
[Obsolete("This is deprecated and replaced by YtRating")]
</member>
<member name="P:Google.GData.YouTube.YouTubeEntry.YtRating">
<summary>
returns the yt:rating element
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.YouTube.YouTubeEntry.RatingsLink">
<summary>
returns the ratings link relationship as an atomUri
</summary>
</member>
<member name="P:Google.GData.YouTube.YouTubeEntry.Duration">
<summary>
returns the yt:duration element
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.YouTube.YouTubeEntry.State">
<summary>
Returns the yt:state tag inside of app:control
</summary>
</member>
<member name="P:Google.GData.YouTube.YouTubeEntry.VideoId">
<summary>
property accessor for the VideoID, if applicable
</summary>
</member>
<member name="P:Google.GData.YouTube.YouTubeEntry.Uploaded">
<summary>
property accessor for the Uploaded element, if applicable
returns the date the video was uplaoded
</summary>
</member>
<member name="P:Google.GData.YouTube.YouTubeEntry.Uploader">
<summary>
property accessor for the media:credit element, if applicable
The media:credit element identifies who uploaded the video
returns the date the video was uplaoded
</summary>
</member>
<member name="P:Google.GData.YouTube.YouTubeEntry.RelatedVideosUri">
<summary>accessor for the related videos feed URI</summary>
<returns> </returns>
</member>
<member name="P:Google.GData.YouTube.YouTubeEntry.VideoResponsesUri">
<summary>accessor for the video responses feed URI</summary>
<returns> </returns>
</member>
<member name="P:Google.GData.YouTube.YouTubeEntry.ComplaintUri">
<summary>accessor for the video responses feed URI</summary>
<returns> </returns>
</member>
<member name="P:Google.GData.YouTube.YouTubeEntry.Private">
<summary>
boolean property shortcut to set the mediagroup/yt:private element. Setting this to true
adds the element, if not already there (otherwise nothing happens)
setting this to false, removes it
it returns if the mediagroup:yt:private element exists, or not
</summary>
<returns></returns>
</member>
<member name="T:Google.GData.YouTube.YouTubeCategoryCollection">
<summary>
this is a helper class for parsing the category document
</summary>
</member>
<member name="M:Google.GData.YouTube.YouTubeCategoryCollection.CreateAtomSubElement(System.Xml.XmlReader,Google.GData.Client.AtomFeedParser)">
<summary>
this is the subclassing method for AtomBase derived
classes to overload what childelements should be created
needed to create CustomLink type objects, like WebContentLink etc
</summary>
<param name="reader">The XmlReader that tells us what we are working with</param>
<param name="parser">the parser is primarily used for nametable comparisons</param>
<returns>AtomBase</returns>
</member>
<member name="P:Google.GData.YouTube.YouTubeCategoryCollection.XmlName">
<summary>Returns the constant representing this XML element.</summary>
</member>
<member name="T:Google.GData.YouTube.SubscriptionFeed">
<summary>
A user's subscriptions feed contains a list of the channels,
favorite video lists and search queries to which the user has subscribed.
In a subscriptions feed, each entry contains information about a single
subscription. Each entry contains the following key tags:
The gd:feedLink tag in the entry identifies the URL that allows
you to retrieve videos for the subscription.
For one of the category tags in the entry, the scheme attribute
value will be http://gdata.youtube.com/schemas/2007/subscriptiontypes.cat.
That tag's term attribute indicates whether the entry describes a
subscription to a channel (term="channel"), another user's
favorite videos list (term="favorites"), or to videos that match
specific keywords (term="query").
If the subscription is to another user's channel or list of favorite videos,
the yt:username tag will identify the user who owns the channel or favorite video list.
If the subscription is to a keyword query, the yt:queryString element will
contain the subscribed-to query term.
</summary>
</member>
<member name="M:Google.GData.YouTube.SubscriptionFeed.#ctor(System.Uri,Google.GData.Client.IService)">
<summary>
default constructor
</summary>
<param name="uriBase">the base URI of the feedEntry</param>
<param name="iService">the Service to use</param>
</member>
<member name="M:Google.GData.YouTube.SubscriptionFeed.CreateFeedEntry">
<summary>
this needs to get implemented by subclasses
</summary>
<returns>AtomEntry</returns>
</member>
<member name="T:Google.GData.YouTube.PlaylistsFeed">
<summary>
A user's playlists feed contains a list of the playlists created by
that user. If you are requesting the playlists feed for the currently
authenticated user, the feed will contain both public and private playlists.
However, if you send an unauthenticated request or request playlists created
by someone other than the currently authenticated user, the feed will only
contain public playlists.
In a playlists feed, each entry contains information about a single playlist,
including the playlist title, description and author. The gd:feedLink tag
in the entry identifies the URL that allows you to retrieve the playlist feed,
which specifies information about the videos in the playlist.
</summary>
</member>
<member name="M:Google.GData.YouTube.PlaylistsFeed.#ctor(System.Uri,Google.GData.Client.IService)">
<summary>
default constructor
</summary>
<param name="uriBase">the base URI of the feedEntry</param>
<param name="iService">the Service to use</param>
</member>
<member name="M:Google.GData.YouTube.PlaylistsFeed.CreateFeedEntry">
<summary>
this needs to get implemented by subclasses
</summary>
<returns>AtomEntry</returns>
</member>
<member name="T:Google.GData.YouTube.PlaylistEntry">
<summary>
Entry API customization class for defining entries in an Playlist feed.
</summary>
</member>
<member name="F:Google.GData.YouTube.PlaylistEntry.PLAYLIST_CATEGORY">
<summary>
Category used to label entries as Playlistentries
</summary>
</member>
<member name="M:Google.GData.YouTube.PlaylistEntry.#ctor">
<summary>
Constructs a new PlayListEntry instance
</summary>
</member>
<member name="P:Google.GData.YouTube.PlaylistEntry.Position">
<summary>
getter/setter for Position subelement
</summary>
</member>
<member name="T:Google.GData.YouTube.ComplaintEntry">
<summary>
Entry API customization class for defining comment entries in an comments feed.
</summary>
</member>
<member name="M:Google.GData.YouTube.ComplaintEntry.#ctor">
<summary>
Constructs a new CommentEntry instance
</summary>
</member>
<member name="P:Google.GData.YouTube.ComplaintEntry.Complaint">
<summary>
getter/setter for yt:content subelement
</summary>
</member>
<member name="P:Google.GData.YouTube.ComplaintEntry.Type">
<summary>
gets and sets the associated atom:category
</summary>
</member>
<member name="T:Google.GData.YouTube.ComplaintEntry.ComplaintType">
<summary>
Describes the nature of the complaint
</summary>
</member>
<member name="F:Google.GData.YouTube.ComplaintEntry.ComplaintType.PORN">
<summary>
The video contains sexual content
</summary>
</member>
<member name="F:Google.GData.YouTube.ComplaintEntry.ComplaintType.VIOLENCE">
<summary>
The video contains violent or repulsive content
</summary>
</member>
<member name="F:Google.GData.YouTube.ComplaintEntry.ComplaintType.HATE">
<summary>
The video contains hateful or abusive content
</summary>
</member>
<member name="F:Google.GData.YouTube.ComplaintEntry.ComplaintType.DANGEROUS">
<summary>
The video contains harmful or dangerous acts
</summary>
</member>
<member name="F:Google.GData.YouTube.ComplaintEntry.ComplaintType.RIGHTS">
<summary>
The video infringes on the complainant's rights or copyright.
</summary>
</member>
<member name="F:Google.GData.YouTube.ComplaintEntry.ComplaintType.SPAM">
<summary>
The video is clearly spam.
</summary>
</member>
<member name="F:Google.GData.YouTube.ComplaintEntry.ComplaintType.UNKNOWN">
<summary>
The type of complaint is not set yet.
</summary>
</member>
<member name="T:Google.GData.YouTube.CommentEntry">
<summary>
Entry API customization class for defining comment entries in an comments feed.
</summary>
</member>
<member name="M:Google.GData.YouTube.CommentEntry.#ctor">
<summary>
Constructs a new CommentEntry instance
</summary>
</member>
<member name="M:Google.GData.YouTube.CommentEntry.ReplyTo(Google.GData.YouTube.CommentEntry)">
<summary>
Adds a reply link to this commententry
-> this new entry will reply to the passed in entry when the comment is
submitted. This will not protect from adding the same guy several times.
</summary>
<param name="theOriginalComment"></param>
<returns></returns>
</member>
<member name="P:Google.GData.YouTube.CommentEntry.Replies">
<summary>
returns the list of reply links inside the entry. Not that modifying that list
will not modify link collection. This is a readonly copy. But the items in that
list are the same as in the linkcollection, so you can remove them from there
</summary>
</member>
<member name="T:Google.GData.YouTube.ShowSeasonFeed">
<summary>
A user's shows feed contains a list of the shows created by
that user.
</summary>
</member>
<member name="M:Google.GData.YouTube.ShowSeasonFeed.#ctor(System.Uri,Google.GData.Client.IService)">
<summary>
default constructor
</summary>
<param name="uriBase">the base URI of the feedEntry</param>
<param name="iService">the Service to use</param>
</member>
<member name="M:Google.GData.YouTube.ShowSeasonFeed.CreateFeedEntry">
<summary>
this needs to get implemented by subclasses
</summary>
<returns>AtomEntry</returns>
</member>
<member name="T:Google.GData.YouTube.ShowSeasonEntry">
<summary>
Entry API customization class for defining entries in a Show feed.
</summary>
</member>
<member name="P:Google.GData.YouTube.ShowSeasonEntry.ClipLink">
<summary>
returns the gd:feedLink element for clips
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.YouTube.ShowSeasonEntry.EpisodeLink">
<summary>
returns the gd:feedLink element for episodes
</summary>
<returns></returns>
</member>
<member name="T:Google.GData.YouTube.ShowEntry">
<summary>
Entry API customization class for defining entries in a Show feed.
</summary>
</member>
<member name="P:Google.GData.YouTube.ShowEntry.FeedLink">
<summary>
returns the gd:feedLink element
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.YouTube.ShowEntry.Media">
<summary>
returns the media:rss group container element
</summary>
</member>
<member name="T:Google.GData.YouTube.CommentsFeed">
<summary>
Each video entry contains a gd:comments tag, which encapsulates the
URL to which you will send API requests to retrieve or append to the
list of comments for the video.
</summary>
</member>
<member name="M:Google.GData.YouTube.CommentsFeed.#ctor(System.Uri,Google.GData.Client.IService)">
<summary>
default constructor
</summary>
<param name="uriBase">the base URI of the feedEntry</param>
<param name="iService">the Service to use</param>
</member>
<member name="M:Google.GData.YouTube.CommentsFeed.CreateFeedEntry">
<summary>
this needs to get implemented by subclasses
</summary>
<returns>AtomEntry</returns>
</member>
<member name="T:Google.GData.YouTube.YouTubeNameTable">
<summary>
short table to hold the namespace and the prefix
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.NSYouTube">
<summary>static string to specify the YouTube namespace supported</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.ytPrefix">
<summary>static string to specify the Google YouTube prefix used</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.RatingsRelationship">
<summary>static string for the ratings relationship</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.ReplyToRelationship">
<summary>static string for the in reply to relationship</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.KIND_VIDEO">
<summary>string for the video kind category</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.KIND_COMPLAINT">
<summary>string for the complaint kind category</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.KIND_COMMENT">
<summary>string for the comment kind category</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.KIND_PLAYLIST_LINK">
<summary>string for the playlistLink kind category</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.KIND_SUBSCRIPTION">
<summary>string for the subscription kind category</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.KIND_FRIEND">
<summary>string for the friend kind category</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.KIND_RATING">
<summary>string for the rating kind category</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.KIND_USER_PROFILE">
<summary>string for the userProfile kind category</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.KIND_PLAYLIST">
<summary>string for the playlist kind category</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.KIND_VIDEO_MESSAGE">
<summary>string for the videoMessage kind category</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.FriendsCategorySchema">
<summary>
The schema used for friends entries
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.SubscriptionCategorySchema">
<summary>
The schema used for subscription entries
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.ComplaintCategorySchema">
<summary>
The schema used for complaint entries
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.EventsCategorySchema">
<summary>
The schema used for user events entries
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.VideoRatedCategory">
<summary>
string for the user rated category term
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.VideoSharedCategory">
<summary>
string for the user shared category term
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.VideoUploadedCategory">
<summary>
string for the user uploaded category term
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.VideoFavoritedCategory">
<summary>
string for the user favorited category term
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.VideoCommentedCategory">
<summary>
string for the user commented category term
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.FriendAddedCategory">
<summary>
string for the user friend added category term
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.UserSubscriptionAddedCategory">
<summary>
string for the user subscriptoin added category term
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.Age">
<summary>
age element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.Books">
<summary>
books element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.CategorySchema">
<summary>
The schema used for categories
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.Company">
<summary>
Company element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.Content">
<summary>
content element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.Description">
<summary>
Description element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.DeveloperTagSchema">
<summary>
The schema used for developer tags
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.Duration">
<summary>
Duration element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.Episode">
<summary>
Episode element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.FirstName">
<summary>
FirstName element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.Gender">
<summary>
Gender element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.Hobbies">
<summary>
Hobbies element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.HomeTown">
<summary>
HomeTown element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.KeywordSchema">
<summary>
The schema used for keywords
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.LastName">
<summary>
LastName element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.Location">
<summary>
Location element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.Movies">
<summary>
Movies element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.Music">
<summary>
Music element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.NoEmbed">
<summary>
NoEmbed element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.Occupation">
<summary>
Occupation element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.Position">
<summary>
Position element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.Private">
<summary>
Private element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.QueryString">
<summary>
QueryString element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.Racy">
<summary>
Racy element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.Recorded">
<summary>
Recorded element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.RelatedVideo">
<summary>
The related videos URI in the link collection
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.Relationship">
<summary>
Relationship element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.ResponseVideo">
<summary>
The video response URI in the link collection
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.Complaint">
<summary>
The video complaint URI in the link collection
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.School">
<summary>
School element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.State">
<summary>
State element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.Statistics">
<summary>
Statistics element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.Status">
<summary>
Status element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.UserName">
<summary>
UserName element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.CountHint">
<summary>
counthint element string for playlist feeds
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.VideoID">
<summary>
videoid element string for playlist feeds
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.Uploaded">
<summary>
uploaded element string for playlist feeds
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.YtRating">
<summary>
yt:rating element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.AccessControl">
<summary>
yt:accessControl element string
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.PlaylistTitle">
<summary>
title for a playlist
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeNameTable.PlaylistId">
<summary>
id for a playlist
</summary>
</member>
<member name="T:Google.GData.YouTube.YouTubeCategory">
<summary>
this Category entry will be returned for the list of official YouTubeCategories,
using the <seealso cref="M:Google.GData.YouTube.YouTubeQuery.GetYouTubeCategories"/> method
</summary>
</member>
<member name="P:Google.GData.YouTube.YouTubeCategory.Assignable">
<summary>
Indicates that new videos may be assigned to that category. New videos
cannot be assigned to categories that are not marked as assignable
</summary>
</member>
<member name="P:Google.GData.YouTube.YouTubeCategory.Browsable">
<summary>
The presence of the <yt:browsable> tag indicates that the corresponding
category is browsable on YouTube in one or more countries. The tag's regions
attribute contains a space-delimited list of two-letter regionIDs that
identifies the particular countries where the category is browsable.
</summary>
</member>
<member name="P:Google.GData.YouTube.YouTubeCategory.Deprecated">
<summary>
Categories that are neither assignable or browsable are deprecated and are identified as such
</summary>
</member>
<member name="T:Google.GData.YouTube.MediaGroup">
<summary>
YouTube specific MediaGroup element. It adds Duration and Private
subelements as well as using a different version of MediaCredit
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.YouTube.MediaGroup.Contents">
<summary>
property accessor for the Contents Collection
</summary>
</member>
<member name="P:Google.GData.YouTube.MediaGroup.Credit">
<summary>
returns the media:credit element
</summary>
</member>
<member name="P:Google.GData.YouTube.MediaGroup.Duration">
<summary>
returns the yt:duration element
</summary>
</member>
<member name="P:Google.GData.YouTube.MediaGroup.Private">
<summary>
returns the yt:duration element
</summary>
</member>
<member name="P:Google.GData.YouTube.MediaGroup.VideoId">
<summary>
property accessor for the VideoID, if applicable
</summary>
</member>
<member name="M:Google.GData.YouTube.MediaCredit.#ctor">
<summary>
default constructor for media:credit
</summary>
</member>
<member name="P:Google.GData.YouTube.MediaCredit.Type">
<summary>
returns the type of the credit element
</summary>
<returns></returns>
</member>
<member name="M:Google.GData.YouTube.MediaContent.#ctor">
<summary>
default constructor for media:credit
</summary>
</member>
<member name="P:Google.GData.YouTube.MediaContent.Format">
<summary>
returns the type of the credit element
</summary>
<returns></returns>
</member>
<member name="T:Google.GData.YouTube.YtAccessControl">
<summary>
The yt:accessControl element indicates whether users are allowed to rate a video,
rate comments about the video, add a video response to the video or embed the
video on third-party websites.
</summary>
</member>
<member name="F:Google.GData.YouTube.YtAccessControl.actionAttribute">
<summary>the action xml attribute</summary>
</member>
<member name="F:Google.GData.YouTube.YtAccessControl.permissionAttribute">
<summary>the permission xml attribute</summary>
</member>
<member name="F:Google.GData.YouTube.YtAccessControl.RateAction">
<summary>the rate action</summary>
</member>
<member name="F:Google.GData.YouTube.YtAccessControl.CommentAction">
<summary>the comment action</summary>
</member>
<member name="F:Google.GData.YouTube.YtAccessControl.CommentVoteAction">
<summary>the commentVote action</summary>
</member>
<member name="F:Google.GData.YouTube.YtAccessControl.VideoRespondAction">
<summary>the videoRespond action</summary>
</member>
<member name="F:Google.GData.YouTube.YtAccessControl.ListAction">
<summary>the list action</summary>
</member>
<member name="F:Google.GData.YouTube.YtAccessControl.EmbedAction">
<summary>the embed action</summary>
</member>
<member name="F:Google.GData.YouTube.YtAccessControl.SyndicateAction">
<summary>the syndicate action</summary>
</member>
<member name="F:Google.GData.YouTube.YtAccessControl.AllowedPermission">
<summary>the allowed permission</summary>
</member>
<member name="F:Google.GData.YouTube.YtAccessControl.DeniedPermission">
<summary>the denied permission</summary>
</member>
<member name="F:Google.GData.YouTube.YtAccessControl.ModeratedPermission">
<summary>the moderated permission</summary>
</member>
<member name="M:Google.GData.YouTube.YtAccessControl.#ctor">
<summary>
default constructor for yt:accessControl.
</summary>
</member>
<member name="M:Google.GData.YouTube.YtAccessControl.#ctor(System.String,System.String)">
<summary>
alternative constructor for yt:accessControl that allows
to specify initial values.
</summary>
</member>
<member name="P:Google.GData.YouTube.YtAccessControl.Action">
<summary>
convenience accessor for action.
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.YouTube.YtAccessControl.Permission">
<summary>
convenience accessor for permission.
</summary>
<returns></returns>
</member>
<member name="T:Google.GData.YouTube.Age">
<summary>
id schema extension describing an ID.
</summary>
</member>
<member name="M:Google.GData.YouTube.Age.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.Age.#ctor(System.String)">
<summary>
default constructor with an initial value as a string
</summary>
</member>
<member name="T:Google.GData.YouTube.Books">
<summary>
Books schema extension describing a YouTube Books
</summary>
</member>
<member name="M:Google.GData.YouTube.Books.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.Books.#ctor(System.String)">
<summary>
constructor with an init value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.Company">
<summary>
Company schema extension describing a YouTube Company
</summary>
</member>
<member name="M:Google.GData.YouTube.Company.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.Company.#ctor(System.String)">
<summary>
constructor taking the initial value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.Content">
<summary>
content schema extension describing a YouTube complaint
</summary>
</member>
<member name="M:Google.GData.YouTube.Content.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.Content.#ctor(System.String)">
<summary>
constructor taking the initial value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.Description">
<summary>
Description schema extension describing a YouTube Description
</summary>
</member>
<member name="M:Google.GData.YouTube.Description.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.Description.#ctor(System.String)">
<summary>
constructor taking the initial value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.Duration">
<summary>
Duration schema extension describing a YouTube Duration
</summary>
</member>
<member name="F:Google.GData.YouTube.Duration.AttributeSeconds">
<summary>the seconds xml attribute </summary>
</member>
<member name="M:Google.GData.YouTube.Duration.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.Duration.#ctor(System.String)">
<summary>
constructor taking the initial value
</summary>
<param name="initValue"></param>
</member>
<member name="P:Google.GData.YouTube.Duration.Seconds">
<summary>returns you the seconds attribute</summary>
<returns> </returns>
</member>
<member name="T:Google.GData.YouTube.Episode">
<summary>
The yt:episode element contains the episode number for the video.
</summary>
</member>
<member name="F:Google.GData.YouTube.Episode.AttributeNumber">
<summary>the number xml attribute </summary>
</member>
<member name="M:Google.GData.YouTube.Episode.#ctor">
<summary>
default constructor for yt:episode.
</summary>
</member>
<member name="M:Google.GData.YouTube.Episode.#ctor(System.String)">
<summary>
default constructor for yt:rating.
</summary>
</member>
<member name="P:Google.GData.YouTube.Episode.Number">
<summary>
convenience accessor for Episode Number.
</summary>
<returns></returns>
</member>
<member name="T:Google.GData.YouTube.FirstName">
<summary>
FirstName schema extension describing a YouTube FirstName
</summary>
</member>
<member name="M:Google.GData.YouTube.FirstName.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.FirstName.#ctor(System.String)">
<summary>
constructor taking the initial value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.Gender">
<summary>
Gender schema extension describing a YouTube Gender
</summary>
</member>
<member name="M:Google.GData.YouTube.Gender.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.Gender.#ctor(System.String)">
<summary>
constructor taking the initial value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.Hobbies">
<summary>
Hobbies schema extension describing a YouTube Hobbies
</summary>
</member>
<member name="M:Google.GData.YouTube.Hobbies.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.Hobbies.#ctor(System.String)">
<summary>
constructor taking the initial value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.HomeTown">
<summary>
HomeTown schema extension describing a YouTube HomeTown
</summary>
</member>
<member name="M:Google.GData.YouTube.HomeTown.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.HomeTown.#ctor(System.String)">
<summary>
constructor taking the initial value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.LastName">
<summary>
LastName schema extension describing a YouTube LastName
</summary>
</member>
<member name="M:Google.GData.YouTube.LastName.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.LastName.#ctor(System.String)">
<summary>
constructor taking the initial value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.Location">
<summary>
Location schema extension describing a YouTube Location
</summary>
</member>
<member name="M:Google.GData.YouTube.Location.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.Location.#ctor(System.String)">
<summary>
constructor taking the initial value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.Movies">
<summary>
Movies schema extension describing a YouTube Movies
</summary>
</member>
<member name="M:Google.GData.YouTube.Movies.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.Movies.#ctor(System.String)">
<summary>
constructor taking the initial value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.Music">
<summary>
Music schema extension describing a YouTube Music
</summary>
</member>
<member name="M:Google.GData.YouTube.Music.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.Music.#ctor(System.String)">
<summary>
constructor taking the initial value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.NoEmbed">
<summary>
NoEmbed schema extension describing a YouTube NoEmbed
</summary>
</member>
<member name="M:Google.GData.YouTube.NoEmbed.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.NoEmbed.#ctor(System.String)">
<summary>
constructor taking the initial value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.Occupation">
<summary>
Occupation schema extension describing a YouTube Occupation
</summary>
</member>
<member name="M:Google.GData.YouTube.Occupation.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.Occupation.#ctor(System.String)">
<summary>
constructor taking the initial value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.Position">
<summary>
Position schema extension describing a YouTube Position
</summary>
</member>
<member name="M:Google.GData.YouTube.Position.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.Position.#ctor(System.String)">
<summary>
constructor taking the initial value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.Private">
<summary>
Private schema extension describing a YouTube Private
</summary>
</member>
<member name="M:Google.GData.YouTube.Private.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.Private.#ctor(System.String)">
<summary>
constructor taking the initial value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.QueryString">
<summary>
QueryString schema extension describing a YouTube QueryString
</summary>
</member>
<member name="M:Google.GData.YouTube.QueryString.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.QueryString.#ctor(System.String)">
<summary>
constructor taking the initial value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.Racy">
<summary>
Racy schema extension describing a YouTube Racy
</summary>
</member>
<member name="M:Google.GData.YouTube.Racy.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.Racy.#ctor(System.String)">
<summary>
constructor taking the initial value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.Recorded">
<summary>
Recorded schema extension describing a YouTube Recorded
</summary>
</member>
<member name="M:Google.GData.YouTube.Recorded.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.Recorded.#ctor(System.String)">
<summary>
constructor taking the initial value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.Relationship">
<summary>
Relationship schema extension describing a YouTube Relationship
</summary>
</member>
<member name="M:Google.GData.YouTube.Relationship.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.Relationship.#ctor(System.String)">
<summary>
constructor taking the initial value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.School">
<summary>
Identifies the school that the user attended according to the information
in the user's public YouTube profile.
</summary>
</member>
<member name="M:Google.GData.YouTube.School.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.School.#ctor(System.String)">
<summary>
constructor taking the initial value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.State">
<summary>
State schema extension describing a YouTube State, child of app:control
The state tag contains information that describes the status of a video.
For videos that failed to upload or were rejected after the upload
process, the reasonCode attribute and the tag value provide
insight into the reason for the upload problem.
</summary>
</member>
<member name="F:Google.GData.YouTube.State.AttributeName">
<summary>the name xml attribute </summary>
</member>
<member name="F:Google.GData.YouTube.State.AttributeReason">
<summary>the reasonCode xml attribute </summary>
</member>
<member name="F:Google.GData.YouTube.State.AttributeHelp">
<summary>the help xml attribute </summary>
</member>
<member name="M:Google.GData.YouTube.State.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.State.#ctor(System.String)">
<summary>
constructor taking the initial value
</summary>
<param name="initValue"></param>
</member>
<member name="P:Google.GData.YouTube.State.Name">
<summary>The name attribute identifies the status of an unpublished video.
Valid values for this tag are processing, deleted, rejected and failed.</summary>
<returns> </returns>
</member>
<member name="P:Google.GData.YouTube.State.Reason">
<summary>The reasonCode attribute provides information about why a video failed
to upload or was rejected after the uploading process. The yt:state tag will not
include a reasonCode attribute if the value of the name
attribute is processing. </summary>
<returns> </returns>
</member>
<member name="P:Google.GData.YouTube.State.Help">
<summary>The helpUrl parameter contains a link to a YouTube Help
Center page that may help the developer or the video owner to
diagnose the reason that an upload failed or was rejected..</summary>
<returns> </returns>
</member>
<member name="T:Google.GData.YouTube.Statistics">
<summary>
The statistics tag provides statistics about a video or a user.
The statistics tag is not provided in a video entry if the value
of the viewCount attribute is 0.
</summary>
</member>
<member name="F:Google.GData.YouTube.Statistics.AttributeViewCount">
<summary>the viewCount xml attribute </summary>
</member>
<member name="F:Google.GData.YouTube.Statistics.AttributeWatchCount">
<summary>the videoWatchCount xml attribute </summary>
</member>
<member name="F:Google.GData.YouTube.Statistics.AttributeSubscriberCount">
<summary>the subscriberCount xml attribute </summary>
</member>
<member name="F:Google.GData.YouTube.Statistics.AttributeLastWebAccess">
<summary>the lastWebAccess xml attribute </summary>
</member>
<member name="F:Google.GData.YouTube.Statistics.AttributeFavoriteCount">
<summary>the favoriteCount xml attribute </summary>
</member>
<member name="M:Google.GData.YouTube.Statistics.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.Statistics.#ctor(System.String)">
<summary>
constructor taking the initial value
</summary>
<param name="initValue"></param>
</member>
<member name="P:Google.GData.YouTube.Statistics.ViewCount">
<summary>convenience accessor for the ViewCount</summary>
<returns> </returns>
</member>
<member name="P:Google.GData.YouTube.Statistics.WatchCount">
<summary>convenience accessor for the Watched Count</summary>
<returns> </returns>
</member>
<member name="P:Google.GData.YouTube.Statistics.SubscriberCount">
<summary>convenience accessor for the SubscriberCount</summary>
<returns> </returns>
</member>
<member name="P:Google.GData.YouTube.Statistics.LastWebAccess">
<summary>convenience accessor for the LastWebAccess</summary>
<returns> </returns>
</member>
<member name="P:Google.GData.YouTube.Statistics.FavoriteCount">
<summary>convenience accessor for the Favorite</summary>
<returns> </returns>
</member>
<member name="T:Google.GData.YouTube.CountHint">
<summary>
The countHint element specifies the number of entries in a playlist feed.
The countHint tag appears in the entries in a playlists feed, where each entry contains
information about a single playlist
</summary>
</member>
<member name="M:Google.GData.YouTube.CountHint.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.CountHint.#ctor(System.String)">
<summary>
constructor taking the initial value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.Status">
<summary>
Status schema extension describing a YouTube Status
</summary>
</member>
<member name="M:Google.GData.YouTube.Status.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.Status.#ctor(System.String)">
<summary>
constructor taking the initial value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.UserName">
<summary>
UserName schema extension describing a YouTube UserName
</summary>
</member>
<member name="M:Google.GData.YouTube.UserName.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.UserName.#ctor(System.String)">
<summary>
constructor taking the initial value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.Uploaded">
<summary>
Uploaded schema extension describing a YouTube uploaded date
</summary>
</member>
<member name="M:Google.GData.YouTube.Uploaded.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.Uploaded.#ctor(System.String)">
<summary>
constructor with an init value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.VideoId">
<summary>
VideoId schema extension describing a YouTube video identifier
</summary>
</member>
<member name="M:Google.GData.YouTube.VideoId.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.VideoId.#ctor(System.String)">
<summary>
constructor with an init value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.PlaylistId">
<summary>
PlaylistId schema extension describing a YouTube playlist identifier
</summary>
</member>
<member name="M:Google.GData.YouTube.PlaylistId.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.PlaylistId.#ctor(System.String)">
<summary>
constructor with an init value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.PlaylistTitle">
<summary>
PlaylistTitle schema extension describing a YouTube playlist title
</summary>
</member>
<member name="M:Google.GData.YouTube.PlaylistTitle.#ctor">
<summary>
default constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.PlaylistTitle.#ctor(System.String)">
<summary>
constructor with an init value
</summary>
<param name="initValue"></param>
</member>
<member name="T:Google.GData.YouTube.YtRating">
<summary>
The yt:rating element contains information about the number of users who gave
the video a positive or negative rating as well as the totale number of ratings
that the video received.
</summary>
</member>
<member name="F:Google.GData.YouTube.YtRating.numLikesAttribute">
<summary>the numLikes xml attribute </summary>
</member>
<member name="F:Google.GData.YouTube.YtRating.numDislikesAttribute">
<summary>the numDislikes xml attribute</summary>
</member>
<member name="F:Google.GData.YouTube.YtRating.valueAttribute">
<summary>the value xml attribute</summary>
</member>
<member name="F:Google.GData.YouTube.YtRating.Like">
<summary>the like video rating</summary>
</member>
<member name="F:Google.GData.YouTube.YtRating.Dislike">
<summary>the dislike video rating</summary>
</member>
<member name="M:Google.GData.YouTube.YtRating.#ctor">
<summary>
default constructor for yt:rating.
</summary>
</member>
<member name="M:Google.GData.YouTube.YtRating.#ctor(System.String)">
<summary>
default constructor for yt:rating.
</summary>
</member>
<member name="P:Google.GData.YouTube.YtRating.NumLikes">
<summary>
convenience accessor for Likes Count.
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.YouTube.YtRating.NumDislikes">
<summary>
convenience accessor for Dislikes Count.
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.YouTube.YtRating.RatingValue">
<summary>
The positive ("like") or negative ("dislike") rating for the video.
</summary>
<returns></returns>
</member>
<member name="T:Google.GData.YouTube.FormUploadToken">
<summary>
Simple class to hold the response of a browser-based upload request
</summary>
</member>
<member name="F:Google.GData.YouTube.FormUploadToken.url">
<summary>
The URL that the browser must POST to
</summary>
</member>
<member name="F:Google.GData.YouTube.FormUploadToken.token">
<summary>
The token which much be included in the browser form.
</summary>
</member>
<member name="M:Google.GData.YouTube.FormUploadToken.#ctor(System.String,System.String)">
<summary>
Simple constructor that initializes private members
</summary>
<param name="url">The URL that the browser must POST to</param>
<param name="token">The token which much be included in the browser form.</param>
</member>
<member name="M:Google.GData.YouTube.FormUploadToken.#ctor(System.IO.Stream)">
<summary>
Constructor that initializes the object from a server response
</summary>
<param name="stream">Stream containing a server response</param>
</member>
<member name="P:Google.GData.YouTube.FormUploadToken.Url">
<summary>
Property to access the URL the browser must POST to
</summary>
</member>
<member name="P:Google.GData.YouTube.FormUploadToken.Token">
<summary>
Property to access the token the browser must include in the form POST
</summary>
</member>
<member name="T:Google.GData.YouTube.YouTubeQuery">
<summary>
A subclass of FeedQuery, to create an YouTube query URI.
The YouTube Data API supports the following standard Google Data query parameters.
Name Definition
alt The alt parameter specifies the format of the feed to be returned.
Valid values for this parameter are atom, rss and json. The default
value is atom and this document only explains the format of Atom responses.
author The author parameter restricts the search to videos uploaded by a
particular YouTube user. The Videos uploaded by a specific user
section discusses this parameter in more detail.
max-results The max-results parameter specifies the maximum number of results
that should be included in the result set. This parameter works
in conjunction with the start-index parameter to determine which
results to return. For example, to request the second set of 10
results Ð i.e. results 11-20 Ð set the max-results parameter to 10
and the start-index parameter to 11. The default value of this
parameter for all Google Data APIs is 25, and the maximum value is 50.
However, for displaying lists of videos, we recommend that you
set the max-results parameter to 10.
start-index The start-index parameter specifies the index of the first matching result
that should be included in the result set. This parameter uses a one-based
index, meaning the first result is 1, the second result is 2 and so forth.
This parameter works in conjunction with the max-results parameter to determine
which results to return. For example, to request the second set of 10
results Ð i.e. results 11-20 Ð set the start-index parameter to 11
and the max-results parameter to 10.
Please see the Google Data APIs Protocol Reference for more information about standard Google
Data API functionality or about these specific parameters.
Custom parameters for the YouTube Data API
In addition to the standard Google Data query parameters, the YouTube Data API defines
the following API-specific query parameters. These parameters are only available on video
and playlist feeds.
Name Definition
orderby The orderby parameter specifies the value that will be used to sort videos in the
search result set. Valid values for this parameter are relevance, published, viewCount
and rating. In addition, you can request results that are most relevant to a specific
language by setting the parameter value to relevance_lang_languageCode, where
languageCode is an ISO 639-1 two-letter language code. (Use the values zh-Hans for
simplified Chinese and zh-Hant for traditional Chinese.) In addition, please note that
results in other languages will still be returned if they are highly relevant to the
search query term.
The default value for this parameter is relevance for a search results feed. For a
playlist feed, the default ordering is based on the position of each video in the playlist.
For a user's playlists or subscriptions feed, the default ordering is arbitrary.
client The client parameter is an alphanumeric string that identifies your application. The
client parameter is an alternate way of specifying your client ID. You can also use the
X-GData-Client request header to specify your client ID. Your application does not need to
specify your client ID twice by using both the client parameter and the X-GData-Client
request header, but it should provide your client ID using at least one of those two methods.
format The format parameter specifies that videos must be available in a particular video format.
Your request can specify any of the following formats:
Value Video Format
1 RTSP streaming URL for mobile video playback. H.263 video (up to 176x144) and AMR audio.
5 HTTP URL to the embeddable player (SWF) for this video. This format is not available for a
video that is not embeddable. Developers commonly add format=5 to their queries to restrict
results to videos that can be embedded on their sites.
6 RTSP streaming URL for mobile video playback. MPEG-4 SP video (up to 176x144) and AAC audio
lr The lr parameter restricts the search to videos that have a title, description or keywords in a
specific language. Valid values for the lr parameter are ISO 639-1 two-letter language codes.
You can also use the values zh-Hans for simplified Chinese and zh-Hant for traditional Chinese. This
parameter can be used when requesting any video feeds other than standard feeds.
restriction The restriction parameter identifies the IP address that should be used to filter videos
that can only be played in specific countries. By default, the API filters out videos that cannot
be played in the country from which you send API requests. This restriction is based on your
client application's IP address.
To request videos playable from a specific computer, include the restriction parameter
in your request and set the parameter value to the IP address of the computer where the videos
will be played Ð e.g. restriction=255.255.255.255.
To request videos that are playable in a specific country, include the restriction parameter in your
request and set the parameter value to the ISO 3166 two-letter country code of the country where
the videos will be played Ð e.g. restriction=DE.
time The time parameter, which is only available for the top_rated, top_favorites, most_viewed,
most_discussed, most_linked and most_responded standard feeds, restricts the search to videos
uploaded within the specified time. Valid values for this parameter are today (1 day),
this_week (7 days), this_month (1 month) and all_time. The default value for this parameter is all_time.
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.StandardFeeds">
<summary>
the standard feeds URL
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.DefaultVideoUri">
<summary>
youTube base video URI
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.BatchVideoUri">
<summary>
youTube base video URI for batch operations
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.MobileVideoUri">
<summary>
youTube base mobile video URI
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.TopRatedVideo">
<summary>
youTube base standard top rated video URI
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.FavoritesVideo">
<summary>
youTube base standard favorites video URI
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.MostViewedVideo">
<summary>
youTube base standard most viewed video URI
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.MostRecentVideo">
<summary>
youTube base standard most recent video URI
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.MostPopular">
<summary>
youTube base standard most popular video URI
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.MostDiscussedVideo">
<summary>
youTube base standard most discussed video URI
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.MostLinkedVideo">
<summary>
youTube base standard most linked video URI
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.MostRespondedVideo">
<summary>
youTube base standard most responded video URI
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.RecentlyFeaturedVideo">
<summary>
youTube base standard recently featured video URI
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.MobilePhonesVideo">
<summary>
youTube base standard mobile phones video URI
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.DefaultUploads">
<summary>
default users upload account
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.BaseUserUri">
<summary>
base uri for user based feeds
</summary>
</member>
<member name="M:Google.GData.YouTube.YouTubeQuery.#ctor">
<summary>
base constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.YouTubeQuery.#ctor(System.String)">
<summary>
base constructor, with initial queryUri
</summary>
<param name="queryUri">the query to use</param>
</member>
<member name="M:Google.GData.YouTube.YouTubeQuery.CreateSubscriptionUri(System.String)">
<summary>
convenience method to create an URI based on a userID
for the subscriptions
</summary>
<param name="userID"></param>
<returns>string</returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeQuery.CreatePlaylistsUri(System.String)">
<summary>
convenience method to create an URI based on a userID
for the playlists of an user
</summary>
<param name="userID"></param>
<returns>string</returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeQuery.CreateFavoritesUri(System.String)">
<summary>
convenience method to create an URI based on a userID
for the favorites of an user
</summary>
<param name="userID"></param>
<returns>string</returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeQuery.CreateMessagesUri(System.String)">
<summary>
convenience method to create an URI based on a userID
for the messages of an user
</summary>
<param name="userID"></param>
<returns>string</returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeQuery.CreateContactsUri(System.String)">
<summary>
convenience method to create an URI based on a userID
for the contacts of an user
</summary>
<param name="userID"></param>
<returns>string</returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeQuery.CreateShowsUri(System.String)">
<summary>
convenience method to create an URI based on a userID
for the shows of an user
</summary>
<param name="userID"></param>
<returns>string</returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeQuery.CreateUserUri(System.String)">
<summary>
convenience method to create an URI based on a userID
for the uploaded videos of an user
</summary>
<param name="userID"></param>
<returns>string</returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeQuery.CreateVideoWatchUri(System.String)">
<summary>
assuming you have a video ID, returns the watch uri as a string
</summary>
<param name="videoID"></param>
<returns></returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeQuery.CreateVideoUri(System.String)">
<summary>
assuming you have a video ID, returns the video feed uri as a string
</summary>
<param name="videoID"></param>
<returns></returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeQuery.GetYouTubeCategories">
<summary>
retrieves the youtubecategories collection from the default
location at http://gdata.youtube.com/schemas/2007/categories.cat
</summary>
<returns></returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeQuery.GetCategories(System.Uri,Google.GData.Client.AtomBase)">
<summary>
retrieves a category collection from the given URL
The owner should be a new Collection object, like:
<code>
GetCategories(new Uri("http://gdata.youtube.com/schemas/2007/categories.cat"),
new YouTubeCategoryCollection())
</code>
</summary>
<returns></returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeQuery.ParseUri(System.Uri)">
<summary>protected void ParseUri</summary>
<param name="targetUri">takes an incoming Uri string and parses all the properties out of it</param>
<returns>throws a query exception when it finds something wrong with the input, otherwise returns a baseuri</returns>
</member>
<member name="M:Google.GData.YouTube.YouTubeQuery.CalculateQuery(System.String)">
<summary>Creates the partial URI query string based on all
set properties.</summary>
<returns> string => the query part of the URI </returns>
</member>
<member name="P:Google.GData.YouTube.YouTubeQuery.Formats">
<summary>
format The format parameter specifies that videos must be available in a particular video format.
Your request can specify any of the following formats:
Value Video Format
1 RTSP streaming URL for mobile video playback. H.263 video (up to 176x144) and AMR audio.
5 HTTP URL to the embeddable player (SWF) for this video. This format is not available for a
video that is not embeddable. Developers commonly add format=5 to their queries to restrict
results to videos that can be embedded on their sites.
6 RTSP streaming URL for mobile video playback. MPEG-4 SP video (up to 176x144) and AAC audio
</summary>
<returns> the list of formats</returns>
</member>
<member name="P:Google.GData.YouTube.YouTubeQuery.Time">
<summary>accessor method public UploadTime Time</summary>
<returns> </returns>
</member>
<member name="P:Google.GData.YouTube.YouTubeQuery.OrderBy">
<summary>
The orderby parameter, which is only supported for video feeds,
specifies the value that will be used to sort videos in the search
result set. Valid values for this parameter are relevance,
published, viewCount and rating. In addition, you can request
results that are most relevant to a specific language by
setting the parameter value to relevance_lang_languageCode,
where languageCode is an ISO 639-1 two-letter
language code. (Use the values zh-Hans for simplified Chinese
and zh-Hant for traditional Chinese.) In addition,
please note that results in other languages will still be
returned if they are highly relevant to the search query term.
The default value for this parameter is relevance
for a search results feed.
accessor method public string OrderBy</summary>
<returns> </returns>
</member>
<member name="P:Google.GData.YouTube.YouTubeQuery.Client">
<summary>
The client parameter is an alphanumeric string that identifies your
application. The client parameter is an alternate way of specifying
your client ID. You can also use the X-GData-Client request header to
specify your client ID. Your application does not need to
specify your client ID twice by using both the client parameter and
the X-GData-Client request header, but it should provide your
client ID using at least one of those two methods.
Note that you should set this normally on the YouTubeService object,
this property is only included for completeness
</summary>
<returns> </returns>
</member>
<member name="P:Google.GData.YouTube.YouTubeQuery.LR">
<summary>
The lr parameter restricts the search to videos that have a title,
description or keywords in a specific language. Valid values for
the lr parameter are ISO 639-1 two-letter language codes. You can
also use the values zh-Hans for simplified Chinese and zh-Hant
for traditional Chinese. This parameter can be used when requesting
any video feeds other than standard feeds.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "P:Google.GData.YouTube.YouTubeQuery.SafeSearch" -->
<!-- Badly formed XML comment ignored for member "P:Google.GData.YouTube.YouTubeQuery.Location" -->
<member name="P:Google.GData.YouTube.YouTubeQuery.LocationRadius">
<summary>
The location-radius parameter, in conjunction with the location parameter, defines a geographic area. If the geographic coordinates associated with a video fall
within that area, then the video may be included in search results.
<para>The location-radius parameter value must be a floating point number followed by a measurement unit. Valid measurement units are m, km, ft and mi.
For example, valid parameter values include "1500m", "5km", "10000ft" and "0.75mi". The API will return an error if the radius is greater than 1000 kilometers.</para>
<seealso cref="P:Google.GData.YouTube.YouTubeQuery.Location"/>
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.YouTube.YouTubeQuery.Restriction">
<summary>
The restriction parameter identifies the IP address that should be
used to filter videos that can only be played in specific countries.
We recommend that you always use this parameter to specify the end
user's IP address. (By default, the API filters out videos that
cannot be played in the country from which you send API requests.
This restriction is based on your client application's IP address.)
To request videos playable from a specific computer, include the
restriction parameter in your request and set the parameter value
to the IP address of the computer where the videos will be
played Ð e.g. restriction=255.255.255.255.
To request videos that are playable in a specific country,
include the restriction parameter in your request and set
the parameter value to the ISO 3166 two-letter country code
of the country where the videos will be played
Ð e.g. restriction=DE.
</summary>
<returns> </returns>
</member>
<member name="P:Google.GData.YouTube.YouTubeQuery.Uploader">
<summary>
The uploader parameter, which is only supported for search requests, lets you restrict a query to YouTube
partner videos. A YouTube partner is a person or organization that has been accepted into and participates
in the YouTube Partner Program.
<para>In an API response, a feed entry contains a partner video if the entry contains a media:credit tag for
which the value of the yt:type attribute is partner.</para>
</summary>
<returns></returns>
</member>
<member name="T:Google.GData.YouTube.YouTubeQuery.VideoFormat">
<summary>
describing the requested video format
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.VideoFormat.FormatUndefined">
<summary>
no parameter. Setting the accessLevel to undefined
implies the server default
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.VideoFormat.RTSP">
<summary>
RTSP streaming URL for mobile video playback. H.263 video (up to 176x144) and AMR audio.
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.VideoFormat.Embeddable">
<summary>
HTTP URL to the embeddable player
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.VideoFormat.Mobile">
<summary>
SRTSP streaming URL for mobile video playback.
</summary>
</member>
<member name="T:Google.GData.YouTube.YouTubeQuery.UploadTime">
<summary>
describing the requested video format
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.UploadTime.UploadTimeUndefined">
<summary>
time undefined, default value for the server
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.UploadTime.Today">
<summary>
today (1day)
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.UploadTime.ThisWeek">
<summary>
This week (7days)
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.UploadTime.ThisMonth">
<summary>
1 month
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.UploadTime.AllTime">
<summary>all time</summary>
</member>
<member name="T:Google.GData.YouTube.YouTubeQuery.SafeSearchValues">
<summary>
describing the possible safe search values
<seealso cref="P:Google.GData.YouTube.YouTubeQuery.SafeSearch"/>
</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.SafeSearchValues.None">
<summary>no restriction</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.SafeSearchValues.Moderate">
<summary>moderate restriction</summary>
</member>
<member name="F:Google.GData.YouTube.YouTubeQuery.SafeSearchValues.Strict">
<summary>strict restriction</summary>
</member>
<!-- Badly formed XML comment ignored for member "T:Google.GData.YouTube.ActivitiesQuery" -->
<member name="F:Google.GData.YouTube.ActivitiesQuery.ActivityFeedUri">
<summary>
youTube events feed for friends activities
</summary>
</member>
<member name="M:Google.GData.YouTube.ActivitiesQuery.#ctor">
<summary>
base constructor
</summary>
</member>
<!-- Badly formed XML comment ignored for member "T:Google.GData.YouTube.UserActivitiesQuery" -->
<member name="F:Google.GData.YouTube.UserActivitiesQuery.ActivityFeedUri">
<summary>
youTube events feed for friends activities
</summary>
</member>
<member name="M:Google.GData.YouTube.UserActivitiesQuery.#ctor">
<summary>
base constructor
</summary>
</member>
<member name="M:Google.GData.YouTube.UserActivitiesQuery.CalculateQuery(System.String)">
<summary>Creates the partial URI query string based on all
set properties.</summary>
<returns> string => the query part of the URI </returns>
</member>
<member name="P:Google.GData.YouTube.UserActivitiesQuery.Authors">
<summary>holds the list of authors we want to search for</summary>
</member>
<member name="T:Google.GData.YouTube.PlaylistsEntry">
<summary>
Entry API customization class for defining entries in an Playlist feed.
</summary>
</member>
<member name="F:Google.GData.YouTube.PlaylistsEntry.PLAYLISTS_CATEGORY">
<summary>
Category used to label entries as Playlistentries
</summary>
</member>
<member name="M:Google.GData.YouTube.PlaylistsEntry.#ctor">
<summary>
Constructs a new PlayListEntry instance
</summary>
</member>
<member name="P:Google.GData.YouTube.PlaylistsEntry.Description">
<summary>
getter/setter for Description subelement
</summary>
</member>
<member name="P:Google.GData.YouTube.PlaylistsEntry.FeedLink">
<summary>
getter/setter for the feedlink subelement
</summary>
</member>
<member name="P:Google.GData.YouTube.PlaylistsEntry.CountHint">
<summary>
returns the int value of the countHint tag
<para>
yt:countHint specifies the number of entries in a playlist feed. The yt:countHint tag appears in the entries in a playlists feed,
where each entry contains information about a single playlist.</para>
</summary>
<returns>-1 if no counthint was present, else the value</returns>
</member>
<member name="P:Google.GData.YouTube.PlaylistsEntry.Private">
<summary>
getter/setter for the private subelement. Indicates if the playlist is private
</summary>
</member>
<member name="M:Google.YouTube.Complaint.EnsureInnerObject">
<summary>
creates the inner contact object when needed
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Complaint.ComplaintEntry">
<summary>
readonly accessor to the typed underlying atom object
</summary>
</member>
<member name="P:Google.YouTube.Complaint.Type">
<summary>
sets the type of the complaint
</summary>
</member>
<member name="P:Google.YouTube.Complaint.ComplaintDescription">
<summary>
sets the verbose part of the complaint, stored in the yt:content element
</summary>
</member>
<member name="T:Google.YouTube.Comment">
<summary>
the Comment entry for a Comments Feed, a feed of Comment for YouTube
</summary>
</member>
<member name="M:Google.YouTube.Comment.EnsureInnerObject">
<summary>
creates the inner contact object when needed
</summary>
<returns></returns>
</member>
<member name="M:Google.YouTube.Comment.ReplyTo(Google.YouTube.Comment)">
<summary>
adds the replyToLinks to this comment
</summary>
<param name="c">The comment this comment is replying to</param>
</member>
<member name="P:Google.YouTube.Comment.CommentEntry">
<summary>
readonly accessor to the underlying CommentEntry object.
</summary>
</member>
<member name="T:Google.YouTube.Subscription">
<summary>
the subscription entry for a subscriptionfeed Feed
</summary>
</member>
<member name="M:Google.YouTube.Subscription.EnsureInnerObject">
<summary>
creates the inner contact object when needed
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Subscription.SubscriptionEntry">
<summary>
readonly accessor for the SubscriptionEntry that is underneath this object.
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Subscription.Type">
<summary>
returns the subscription type
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Subscription.UserName">
<summary>
The user who is the owner of this subscription
</summary>
</member>
<member name="P:Google.YouTube.Subscription.QueryString">
<summary>
if the subscription is a keyword query, this will be the
subscribed to query term
</summary>
</member>
<member name="P:Google.YouTube.Subscription.PlaylistId">
<summary>
the id of the playlist you are subscriped to
</summary>
</member>
<member name="P:Google.YouTube.Subscription.PlaylistTitle">
<summary>
the human readable name of the playlist you are subscribed to
</summary>
</member>
<member name="T:Google.YouTube.Activity">
<summary>
the Activity entry for an Activities Feed, a feed of activities for the friends/contacts
of the logged in user
</summary>
<returns></returns>
</member>
<member name="M:Google.YouTube.Activity.EnsureInnerObject">
<summary>
creates the inner contact object when needed
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Activity.ActivityEntry">
<summary>
readonly accessor for the YouTubeEntry that is underneath this object.
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Activity.VideoId">
<summary>
specifies a unique ID that YouTube uses to identify a video.
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Activity.Type">
<summary>
the type of the activity
</summary>
</member>
<member name="P:Google.YouTube.Activity.Username">
<summary>
the username of the friend who was added,
or the user whom was subscribed to
</summary>
</member>
<member name="T:Google.YouTube.Playlist">
<summary>
the Playlist entry for a Playlist Feed, a feed of Playlist for YouTube
</summary>
</member>
<member name="M:Google.YouTube.Playlist.EnsureInnerObject">
<summary>
creates the inner contact object when needed
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Playlist.PlaylistsEntry">
<summary>
returns the internal atomentry as a PlaylistsEntry
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Playlist.CountHint">
<summary>
specifies the number of entries in a playlist feed. This tag appears in the entries in a
playlists feed, where each entry contains information about a single playlist.
</summary>
<returns></returns>
</member>
<member name="T:Google.YouTube.Show">
<summary>
the Show entry in feed<Shows> for YouTube
</summary>
</member>
<member name="M:Google.YouTube.Show.EnsureInnerObject">
<summary>
creates the inner show object when needed
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Show.ShowEntry">
<summary>
returns the internal atomentry as a ShowEntry
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Show.Description">
<summary>
contains a summary or description of a show.
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Show.SeasonUrl">
<summary>
returns the URL for a feed of show seasons
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Show.Keywords">
<summary>
returns the keywords for the video, see MediaKeywords for more
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Show.Title">
<summary>
the title of the show. Overloaded to keep entry.title and the media.title
in sync.
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Show.Thumbnails">
<summary>
returns the collection of thumbnails for the show
</summary>
<returns></returns>
</member>
<member name="T:Google.YouTube.ShowSeason">
<summary>
the Show entry in feed<Shows> for YouTube
</summary>
</member>
<member name="M:Google.YouTube.ShowSeason.EnsureInnerObject">
<summary>
creates the inner show season object when needed
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.ShowSeason.ShowSeasonEntry">
<summary>
returns the internal atomentry as a ShowSeasonEntry
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.ShowSeason.ClipCount">
<summary>
returns the count of expected Clips for the season
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.ShowSeason.ClipUrl">
<summary>
returns the feed URL for season Clips
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.ShowSeason.EpisodeCount">
<summary>
returns the count of expected Episodes for the season
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.ShowSeason.EpisodeUrl">
<summary>
returns the feed URL for season Episodes
</summary>
<returns></returns>
</member>
<member name="T:Google.YouTube.Video">
<summary>the Video Entry in feed<Videos> for YouTube
</summary>
</member>
<member name="M:Google.YouTube.Video.EnsureInnerObject">
<summary>
creates the inner contact object when needed
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Video.YouTubeEntry">
<summary>
readonly accessor for the YouTubeEntry that is underneath this object.
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Video.VideoId">
<summary>
specifies a unique ID that YouTube uses to identify a video.
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Video.Description">
<summary>
contains a summary or description of a video. This field is required in requests to
upload or update a video's metadata. The description should be sentence-based,
rather than a list of keywords, and may be displayed in search results. The description has a
maximum length of 5000 characters and may contain all valid UTF-8 characters except < and >
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Video.Title">
<summary>
the title of the Video. Overloaded to keep entry.title and the media.title
in sync.
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Video.Tags">
<summary>
returns the categories for the video
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Video.Keywords">
<summary>
returns the keywords for the video, see MediaKeywords for more
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Video.Thumbnails">
<summary>
returns the collection of thumbnails for the video
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Video.Contents">
<summary>
returns the collection of thumbnails for the vido
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Video.WatchPage">
<summary>
specifies a URL where the full-length video is available through a media player that runs
inside a web browser. In a YouTube Data API response, this specifies the URL for the page
on YouTube's website that plays the video
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Video.Uploader">
<summary>
identifies the owner of a video.
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Video.Media">
<summary>
access to the Media group subelement
</summary>
</member>
<member name="P:Google.YouTube.Video.ViewCount">
<summary>
returns the viewcount for the video
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Video.CommmentCount">
<summary>
returns the number of comments for the video
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Video.Rating">
<summary>
returns the rating for a video
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Video.RatingAverage">
<summary>
returns the average rating for a video
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Video.RatingsUri">
<summary>
returns the ratings Uri, to post a rating to.
</summary>
</member>
<member name="P:Google.YouTube.Video.ResponseUri">
<summary>
returns the response Uri, to post a video response to.
</summary>
</member>
<member name="P:Google.YouTube.Video.ComplaintUri">
<summary>
returns the complaint Uri, to post a complaint to.
</summary>
</member>
<member name="P:Google.YouTube.Video.Private">
<summary>
boolean property shortcut to set the mediagroup/yt:private element. Setting this to true
adds the element, if not already there (otherwise nothing happens)
setting this to false, removes it
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.Video.Status">
<summary>
The yt:state tag contains information that describes the status of a video.
Video entries that contain a yt:state tag are not playable.
For videos that failed to upload or were rejected after the upload process, the reasonCode
attribute and the tag value provide insight into the reason for the upload problem.
Deleted entries only appear in playlist and inbox feeds and are only visible to the playlist
or inbox owner.
</summary>
</member>
<member name="T:Google.YouTube.PlayListMember">
<summary>
subclass of a video to represent a video that is part of a playlist
</summary>
</member>
<member name="M:Google.YouTube.PlayListMember.EnsureInnerObject">
<summary>
creates the inner contact object when needed
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.PlayListMember.PlaylistEntry">
<summary>
readonly accessor for the YouTubeEntry that is underneath this object.
</summary>
<returns></returns>
</member>
<member name="P:Google.YouTube.PlayListMember.Position">
<summary>
if the video is a playlist reference, gets and sets its position in the playlist
</summary>
</member>
<member name="T:Google.YouTube.YouTubeRequestSettings">
<summary>
YouTube specific class for request settings,
adds support for developer key and clientid
</summary>
<returns></returns>
</member>
<member name="M:Google.YouTube.YouTubeRequestSettings.#ctor(System.String,System.String)">
<summary>
A constructor for a readonly scenario.
</summary>
<param name="applicationName">The name of the application</param>
<param name="developerKey">the developer key to use</param>
<returns></returns>
</member>
<member name="M:Google.YouTube.YouTubeRequestSettings.#ctor(System.String,System.String,System.String,System.String)">
<summary>
A constructor for a client login scenario
</summary>
<param name="applicationName">The name of the application</param>
<param name="developerKey">the developer key to use</param>
<param name="userName">the username</param>
<param name="passWord">the password</param>
<returns></returns>
</member>
<member name="M:Google.YouTube.YouTubeRequestSettings.#ctor(System.String,System.String,System.String)">
<summary>
a constructor for a web application authentication scenario
</summary>
<param name="applicationName">The name of the application</param>
<param name="developerKey">the developer key to use</param>
<param name="authSubToken">the authentication token</param>
<returns></returns>
</member>
<member name="M:Google.YouTube.YouTubeRequestSettings.#ctor(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)">
<summary>
a constructor for OpenAuthentication login use cases using 2 or 3 legged oAuth
</summary>
<param name="applicationName">The name of the application</param>
<param name="developerKey">the developer key to use</param>
<param name="consumerKey">the consumerKey to use</param>
<param name="consumerSecret">the consumerSecret to use</param>
<param name="token">The token to be used</param>
<param name="tokenSecret">The tokenSecret to be used</param>
<param name="user">the username to use</param>
<param name="domain">the domain to use</param>
<returns></returns>
</member>
<member name="P:Google.YouTube.YouTubeRequestSettings.DeveloperKey">
<summary>
returns the developer key
</summary>
<returns></returns>
</member>
<!-- Badly formed XML comment ignored for member "T:Google.YouTube.YouTubeRequest" -->
<member name="M:Google.YouTube.YouTubeRequest.#ctor(Google.YouTube.YouTubeRequestSettings)">
<summary>
default constructor for a YouTubeRequest
</summary>
<param name="settings"></param>
</member>
<member name="M:Google.YouTube.YouTubeRequest.GetVideoFeed(System.String)">
<summary>
returns a Feed of videos for a given username
</summary>
<param name="user">the username</param>
<returns>a feed of Videos</returns>
</member>
<member name="M:Google.YouTube.YouTubeRequest.GetStandardFeed(System.String)">
<summary>
returns one of the youtube default feeds.
</summary>
<param name="feedspec">the string representation of the URI to use</param>
<returns>a feed of Videos</returns>
</member>
<member name="M:Google.YouTube.YouTubeRequest.GetStandardShowFeed(System.String)">
<summary>
returns the youtube standard show feed.
</summary>
<param name="feedspec">the string representation of the URI to use</param>
<returns>a feed of Videos</returns>
</member>
<member name="M:Google.YouTube.YouTubeRequest.GetFavoriteFeed(System.String)">
<summary>
returns a Feed of favorite videos for a given username
</summary>
<param name="user">the username</param>
<returns>a feed of Videos</returns>
</member>
<member name="M:Google.YouTube.YouTubeRequest.GetSubscriptionsFeed(System.String)">
<summary>
returns a Feed of subscriptions for a given username
</summary>
<param name="user">the username</param>
<returns>a feed of Videos</returns>
</member>
<member name="M:Google.YouTube.YouTubeRequest.GetPlaylistsFeed(System.String)">
<summary>
returns a Feed of playlists for a given username
</summary>
<param name="user">the username</param>
<returns>a feed of Videos</returns>
</member>
<member name="M:Google.YouTube.YouTubeRequest.GetShowsFeed(System.String)">
<summary>
returns a Feed of shows for a given username
</summary>
<param name="user">the username</param>
<returns>a feed of Shows</returns>
</member>
<member name="M:Google.YouTube.YouTubeRequest.GetShowSeasonFeed(System.String)">
<summary>
returns a Feed of seasons for a given show
</summary>
<param name="user">the username</param>
<returns>a feed of Shows</returns>
</member>
<member name="M:Google.YouTube.YouTubeRequest.GetShowSeasonVideos(System.String)">
<summary>
returns a Feed of videos for a given show season
</summary>
<param name="user">the username</param>
<returns>a feed of Shows</returns>
</member>
<member name="M:Google.YouTube.YouTubeRequest.GetRelatedVideos(Google.YouTube.Video)">
<summary>
returns the related videos for a given video
</summary>
<param name="v"></param>
<returns></returns>
</member>
<member name="M:Google.YouTube.YouTubeRequest.GetResponseVideos(Google.YouTube.Video)">
<summary>
gets the response videos for a given video
</summary>
<param name="v"></param>
<returns></returns>
</member>
<member name="M:Google.YouTube.YouTubeRequest.GetComments(Google.YouTube.Video)">
<summary>
gets the comments for a given video
</summary>
<param name="v"></param>
<returns></returns>
</member>
<member name="M:Google.YouTube.YouTubeRequest.GetActivities">
<summary>
gets the activities that your contacts/friends did recently
</summary>
<returns></returns>
</member>
<member name="M:Google.YouTube.YouTubeRequest.GetActivities(System.Collections.Generic.List{System.String})">
<summary>
gets the activities for a list of users
</summary>
<param name="youTubeUsers">The list of youtube user ids</param>
<returns></returns>
</member>
<member name="M:Google.YouTube.YouTubeRequest.GetActivities(System.Collections.Generic.List{System.String},System.DateTime)">
<summary>
gets the activities for a list of users
</summary>
<param name="youTubeUsers">The list of youtube user ids</param>
<returns></returns>
</member>
<member name="M:Google.YouTube.YouTubeRequest.GetActivities(System.DateTime)">
<summary>
gets the activities that your contacts/friends did recently, from the
given datetime point
</summary>
<returns></returns>
</member>
<member name="M:Google.YouTube.YouTubeRequest.GetPlaylist(Google.YouTube.Playlist)">
<summary>
returns the feed of videos for a given playlist
</summary>
<example>
The following code illustrates a possible use of
the <c>GetPlaylist</c> method:
<code>
YouTubeRequestSettings settings = new YouTubeRequestSettings("yourApp", "yourClient", "yourKey", "username", "pwd");
YouTubeRequest f = new YouTubeRequest(settings);
Feed<Playlist> feed = f.GetPlaylistsFeed(null);
</code>
</example>
<param name="p">the playlist to get the videos for</param>
<returns></returns>
</member>
<member name="M:Google.YouTube.YouTubeRequest.Upload(Google.YouTube.Video)">
<summary>
uploads or inserts a new video for the default authenticated user.
</summary>
<param name="v">the created video to be used</param>
<returns></returns>
</member>
<member name="M:Google.YouTube.YouTubeRequest.Upload(System.String,Google.YouTube.Video)">
<summary>
uploads or inserts a new video for a given user.
</summary>
<param name="userName">if this is null the default authenticated user will be used</param>
<param name="v">the created video to be used</param>
<returns></returns>
</member>
<member name="M:Google.YouTube.YouTubeRequest.CreateFormUploadToken(Google.YouTube.Video)">
<summary>
creates the form upload token for a video
</summary>
<param name="v">the created video to be used</param>
<returns></returns>
</member>
<member name="M:Google.YouTube.YouTubeRequest.GetVideoForActivity(Google.YouTube.Activity)">
<summary>
returns the video this activity was related to
</summary>
<param name="activity"></param>
<returns></returns>
</member>
<member name="M:Google.YouTube.YouTubeRequest.AddComment(Google.YouTube.Video,Google.YouTube.Comment)">
<summary>
adds a comment to a video
</summary>
<param name="v">the video you want to comment on</param>
<param name="c">the comment you want to post</param>
<returns></returns>
</member>
<member name="M:Google.YouTube.YouTubeRequest.AddToPlaylist(Google.YouTube.Playlist,Google.YouTube.PlayListMember)">
<summary>
adds a video to an existing playlist
</summary>
<param name="m">the new playlistmember</param>
<param name="p">the playlist to add tot</param>
<returns></returns>
</member>
<member name="M:Google.YouTube.YouTubeRequest.GetVideoMetaData(System.Collections.Generic.List{Google.YouTube.Activity})">
<summary>
Takes a list of activities, and gets the video meta data from youtube
for those activites that identify a video
</summary>
<param name="list">a list of activities</param>
<returns>a video feed, with no entries, if there were no video related activities</returns>
</member>
<member name="M:Google.YouTube.YouTubeRequest.ParseVideo(System.IO.Stream)">
<summary>
returns a single Video (the first) from that stream. Usefull to parse insert/update
response streams
</summary>
<param name="inputStream"></param>
<returns></returns>
</member>
<member name="T:Google.GData.YouTube.ShowFeed">
<summary>
A user's shows feed contains a list of the shows created by
that user.
</summary>
</member>
<member name="M:Google.GData.YouTube.ShowFeed.#ctor(System.Uri,Google.GData.Client.IService)">
<summary>
default constructor
</summary>
<param name="uriBase">the base URI of the feedEntry</param>
<param name="iService">the Service to use</param>
</member>
<member name="M:Google.GData.YouTube.ShowFeed.CreateFeedEntry">
<summary>
this needs to get implemented by subclasses
</summary>
<returns>AtomEntry</returns>
</member>
<member name="T:Google.GData.YouTube.ProfileFeed">
<summary>
A user profile contains information that the user lists on his YouTube
profile page.
</summary>
</member>
<member name="M:Google.GData.YouTube.ProfileFeed.#ctor(System.Uri,Google.GData.Client.IService)">
<summary>
default constructor
</summary>
<param name="uriBase">the base URI of the feedEntry</param>
<param name="iService">the Service to use</param>
</member>
<member name="M:Google.GData.YouTube.ProfileFeed.CreateFeedEntry">
<summary>
this needs to get implemented by subclasses
</summary>
<returns>AtomEntry</returns>
</member>
<member name="T:Google.GData.YouTube.ProfileEntry">
<summary>
A user profile contains information that the user lists on his YouTube profile page.
</summary>
</member>
<member name="F:Google.GData.YouTube.ProfileEntry.PROFILE_CATEGORY">
<summary>
Category used to label entries that friends
</summary>
</member>
<member name="M:Google.GData.YouTube.ProfileEntry.#ctor">
<summary>
Constructs a new ProfileEntry instance
</summary>
</member>
<member name="P:Google.GData.YouTube.ProfileEntry.Age">
<summary>
The yt:age tag specifies the user's age, which is calculated based on the birthdate provided
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.YouTube.ProfileEntry.Company">
<summary>
The yt:company tag identifies the company that the user works for as entered by the user
in the user's public YouTube profile
</summary>
</member>
<member name="P:Google.GData.YouTube.ProfileEntry.Books">
<summary>
The yt:books tag identifies the user's favorite books as entered in the user's YouTube public profile
</summary>
</member>
<member name="P:Google.GData.YouTube.ProfileEntry.Firstname">
<summary>
the users firstname per public profile
</summary>
</member>
<member name="P:Google.GData.YouTube.ProfileEntry.Lastname">
<summary>
the users lastname per public profile
</summary>
</member>
<member name="P:Google.GData.YouTube.ProfileEntry.Hobbies">
<summary>
the users hobbies per public profile
</summary>
</member>
<member name="P:Google.GData.YouTube.ProfileEntry.Gender">
<summary>
the users gender per public profile
</summary>
</member>
<member name="P:Google.GData.YouTube.ProfileEntry.Location">
<summary>
the users location per public profile
</summary>
</member>
<member name="P:Google.GData.YouTube.ProfileEntry.Movies">
<summary>
the users favorite movies per public profile
</summary>
</member>
<member name="P:Google.GData.YouTube.ProfileEntry.Music">
<summary>
the users favorite music per public profile
</summary>
</member>
<member name="P:Google.GData.YouTube.ProfileEntry.Occupation">
<summary>
the users occupation per public profile
</summary>
</member>
<member name="P:Google.GData.YouTube.ProfileEntry.School">
<summary>
the users school per public profile
</summary>
</member>
<member name="P:Google.GData.YouTube.ProfileEntry.UserName">
<summary>
getter/setter for UserName subelement
</summary>
</member>
<member name="P:Google.GData.YouTube.ProfileEntry.Relationship">
<summary>
The yt:relationship tag identifies the user's relationship status
</summary>
</member>
<member name="P:Google.GData.YouTube.ProfileEntry.Hometown">
<summary>
The yt:hometown tag identifies the user's hometown
</summary>
</member>
<member name="P:Google.GData.YouTube.ProfileEntry.Statistics">
<summary>
returns the yt:statistics element
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.YouTube.ProfileEntry.FeedLinks">
<summary>
property accessor for the Thumbnails
</summary>
</member>
<member name="P:Google.GData.YouTube.ProfileEntry.Description">
<summary>
getter/setter for Description subelement
</summary>
</member>
<member name="T:Google.GData.YouTube.FriendsEntry">
<summary>
An individual entry inside the FriendsFeed. It represents a contact of the user
</summary>
</member>
<member name="F:Google.GData.YouTube.FriendsEntry.FRIENDS_CATEGORY">
<summary>
Category used to label entries that friends
</summary>
</member>
<member name="M:Google.GData.YouTube.FriendsEntry.#ctor">
<summary>
Constructs a new FriendsEntry instance
</summary>
</member>
<member name="P:Google.GData.YouTube.FriendsEntry.Status">
<summary>
getter/setter for Status subelement
</summary>
</member>
<member name="P:Google.GData.YouTube.FriendsEntry.UserName">
<summary>
getter/setter for UserName subelement
</summary>
</member>
<member name="T:Google.GData.YouTube.MessageEntry">
<summary>
Entry API customization class for defining entries in an messages feed.
</summary>
</member>
<member name="F:Google.GData.YouTube.MessageEntry.MESSAGE_CATEGORY">
<summary>
Category used to label entries as Playlistentries
</summary>
</member>
<member name="M:Google.GData.YouTube.MessageEntry.#ctor">
<summary>
Constructs a new PlayListEntry instance
</summary>
</member>
<member name="P:Google.GData.YouTube.MessageEntry.Description">
<summary>
getter/setter for Description subelement
</summary>
</member>
<member name="T:Google.GData.YouTube.ActivityType">
<summary>
enum to define different activities.
</summary>
</member>
<member name="F:Google.GData.YouTube.ActivityType.Rated">
<summary>
a user rated an entry
</summary>
</member>
<member name="F:Google.GData.YouTube.ActivityType.Shared">
<summary>
a user shared a video
</summary>
</member>
<member name="F:Google.GData.YouTube.ActivityType.Uploaded">
<summary>
a user uploaded a video
</summary>
</member>
<member name="F:Google.GData.YouTube.ActivityType.Favorited">
<summary>
a user added something to his favorites
</summary>
</member>
<member name="F:Google.GData.YouTube.ActivityType.FriendAdded">
<summary>
a user added a friend
</summary>
</member>
<member name="F:Google.GData.YouTube.ActivityType.SubscriptionAdded">
<summary>
a user added something to his subscriptions
</summary>
</member>
<member name="F:Google.GData.YouTube.ActivityType.Commented">
<summary>
a user commented on something
</summary>
</member>
<member name="F:Google.GData.YouTube.ActivityType.Undefined">
<summary>
undfined -> there was no Type for this entry
</summary>
</member>
<member name="T:Google.GData.YouTube.ActivityEntry">
<summary>
Entry API customization class for retrieving activies
</summary>
</member>
<member name="F:Google.GData.YouTube.ActivityEntry.VIDEORATED_CATEGORY">
<summary>
Category used to label entries that indicate a user marking a video as a favorite
</summary>
</member>
<member name="F:Google.GData.YouTube.ActivityEntry.VIDEOSHARED_CATEGORY">
<summary>
Category used to label entries that indicate a user marking a video as a favorite
</summary>
</member>
<member name="F:Google.GData.YouTube.ActivityEntry.VIDEOUPLOADED_CATEGORY">
<summary>
Category used to label entries that indicate a user marking a video as a favorite
</summary>
</member>
<member name="F:Google.GData.YouTube.ActivityEntry.VIDEOFAVORITED_CATEGORY">
<summary>
Category used to label entries that indicate a user marking a video as a favorite
</summary>
</member>
<member name="F:Google.GData.YouTube.ActivityEntry.VIDEOCOMMENTED_CATEGORY">
<summary>
Category used to label entries that indicate a user commenting on a video
</summary>
</member>
<member name="F:Google.GData.YouTube.ActivityEntry.FRIENDADDED_CATEGORY">
<summary>
Category used to label entries that indicate a user added a friend
</summary>
</member>
<!-- Badly formed XML comment ignored for member "F:Google.GData.YouTube.ActivityEntry.USERSUBSCRIPTIONADDED_CATEGORY" -->
<member name="M:Google.GData.YouTube.ActivityEntry.#ctor">
<summary>
Constructs a new ActivityEntry instance
</summary>
</member>
<member name="P:Google.GData.YouTube.ActivityEntry.Type">
<summary>
The type of Activity, the user action that caused this.
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.YouTube.ActivityEntry.VideoId">
<summary>
property accessor for the VideoID, if applicable
</summary>
</member>
<member name="P:Google.GData.YouTube.ActivityEntry.Username">
<summary>
property accessor for the UserName, if applicable
</summary>
</member>
<member name="P:Google.GData.YouTube.ActivityEntry.VideoLink">
<summary>returns the video relation link uri, which can be used to
retrieve the video entry</summary>
<returns> </returns>
</member>
<member name="T:Google.GData.YouTube.ActivitiesFeed">
<summary>
An ActivitiesFeed contains activities for the friends of a particular youtube user
</summary>
</member>
<member name="M:Google.GData.YouTube.ActivitiesFeed.#ctor(System.Uri,Google.GData.Client.IService)">
<summary>
default constructor
</summary>
<param name="uriBase">the base URI of the feedEntry</param>
<param name="iService">the Service to use</param>
</member>
<member name="M:Google.GData.YouTube.ActivitiesFeed.CreateFeedEntry">
<summary>
this needs to get implemented by subclasses
</summary>
<returns>AtomEntry</returns>
</member>
<member name="T:Google.GData.YouTube.PlaylistFeed">
<summary>
The YouTube Data API allows applications to perform functions normally
executed on the YouTube website. The API enables your application to search
for YouTube videos and to retrieve standard video feeds, comments and video
responses.
In addition, the API lets your application upload videos to YouTube or
update existing videos. Your can also retrieve playlists, subscriptions,
user profiles and more. Finally, your application can submit
authenticated requests to enable users to create playlists,
subscriptions, contacts and other account-specific entities.
</summary>
</member>
<member name="M:Google.GData.YouTube.PlaylistFeed.#ctor(System.Uri,Google.GData.Client.IService)">
<summary>
default constructor
</summary>
<param name="uriBase">the base URI of the feedEntry</param>
<param name="iService">the Service to use</param>
</member>
<member name="M:Google.GData.YouTube.PlaylistFeed.CreateFeedEntry">
<summary>
this needs to get implemented by subclasses
</summary>
<returns>AtomEntry</returns>
</member>
<member name="T:Google.GData.YouTube.MessageFeed">
<summary>
Messages can be sent between YouTube users, optionally including a video.
</summary>
</member>
<member name="M:Google.GData.YouTube.MessageFeed.#ctor(System.Uri,Google.GData.Client.IService)">
<summary>
default constructor
</summary>
<param name="uriBase">the base URI of the feedEntry</param>
<param name="iService">the Service to use</param>
</member>
<member name="M:Google.GData.YouTube.MessageFeed.CreateFeedEntry">
<summary>
this needs to get implemented by subclasses
</summary>
<returns>AtomEntry</returns>
</member>
<member name="T:Google.GData.YouTube.SubscriptionEntry">
<summary>
The gd:feedLink tag in the entry identifies the URL that allows
you to retrieve videos for the subscription.
For one of the category tags in the entry, the scheme attribute
value will be http://gdata.youtube.com/schemas/2007/subscriptiontypes.cat.
That tag's term attribute indicates whether the entry describes a
subscription to a channel (term="channel"), another user's
favorite videos list (term="favorites"), or to videos that match
specific keywords (term="query").
If the subscription is to another user's channel or list of favorite videos,
the yt:username tag will identify the user who owns the channel or favorite video list.
If the subscription is to a keyword query, the yt:queryString element will
contain the subscribed-to query term.
</summary>
</member>
<member name="F:Google.GData.YouTube.SubscriptionEntry.SUBSCRIPTION_CATEGORY">
<summary>
Category used to label entries that are subscriptions
</summary>
</member>
<member name="M:Google.GData.YouTube.SubscriptionEntry.#ctor">
<summary>
Constructs a new YouTubeEntry instance
</summary>
</member>
<member name="P:Google.GData.YouTube.SubscriptionEntry.Type">
<summary>
gets and sets the associated atom:category
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.YouTube.SubscriptionEntry.UserName">
<summary>
getter/setter for UserName subelement
</summary>
</member>
<member name="P:Google.GData.YouTube.SubscriptionEntry.QueryString">
<summary>
getter/setter for QueryString subelement
</summary>
</member>
<member name="P:Google.GData.YouTube.SubscriptionEntry.PlaylistId">
<summary>
getter/setter for PlaylistId subelement
</summary>
</member>
<member name="P:Google.GData.YouTube.SubscriptionEntry.PlaylistTitle">
<summary>
getter/setter for PlaylistTitle subelement
</summary>
</member>
<member name="T:Google.GData.YouTube.SubscriptionEntry.SubscriptionType">
<summary>
describes the subscription types for a subscription feed
</summary>
</member>
<member name="F:Google.GData.YouTube.SubscriptionEntry.SubscriptionType.channel">
<summary>
indicates a channel subscription
</summary>
</member>
<member name="F:Google.GData.YouTube.SubscriptionEntry.SubscriptionType.favorites">
<summary>
indicates a user favorites subscription
</summary>
</member>
<member name="F:Google.GData.YouTube.SubscriptionEntry.SubscriptionType.query">
<summary>
indicates a query based subscription
</summary>
</member>
<member name="F:Google.GData.YouTube.SubscriptionEntry.SubscriptionType.playlist">
<summary>
indicates a playlist based subscription
</summary>
</member>
<member name="F:Google.GData.YouTube.SubscriptionEntry.SubscriptionType.unknown">
<summary>
indicates an unknown state
</summary>
</member>
</members>
</doc>
|