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
|
<?xml version="1.0"?>
<doc>
<assembly>
<name>Google.GData.Documents</name>
</assembly>
<members>
<member name="T:Google.GData.Documents.DocumentsFeed">
<summary>
Google Documents List feed URI takes the following form:
http://docs.google.com/feeds/documents/visibility/projection
The visibility parameter has two possible values: private and public.
In almost all cases, your client should use private.
The projection parameter indicates what information is included in the representation.
For example, if your client specifies a projection of basic, it's requesting an Atom feed
without any GData extension elements.
Currently, in the Documents List feed, only the private/full combination
for visibility and projection is available.
</summary>
</member>
<member name="M:Google.GData.Documents.DocumentsFeed.#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.Documents.DocumentsFeed.CreateFeedEntry">
<summary>
this needs to get implemented by subclasses
</summary>
<returns>AtomEntry</returns>
</member>
<member name="M:Google.GData.Documents.DocumentsFeed.HandleExtensionElements(Google.GData.Client.ExtensionElementEventArgs,Google.GData.Client.AtomFeedParser)">
<summary>
is 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="T:Google.GData.Documents.DocumentslistNametable">
<summary>
Name Table for string constants used in the Documents list api
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.NSDocumentslist">
<summary>Document list namespace</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.Prefix">
<summary>Document list prefix</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.WritersCanInvite">
<summary>Writers can invite element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.Changestamp">
<summary>Changestamp element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.QuotaBytesTotal">
<summary>QuotaBytesTotal element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.QuotaBytesUsedInTrash">
<summary>QuotaBytesUsedInTrash element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.LargestChangestamp">
<summary>LargestChangestamp element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.RemainingChangestamps">
<summary>RemainingChangestamps element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.ImportFormat">
<summary>ImportFormat element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.ExportFormat">
<summary>ExportFormat element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.Source">
<summary>Source element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.Target">
<summary>Target element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.Reason">
<summary>Reason element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.Feature">
<summary>Feature element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.FeatureName">
<summary>FeatureName element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.FeatureRate">
<summary>FeatureRate element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.MaxUploadSize">
<summary>MaxUploadSize element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.Kind">
<summary>Kind element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.AdditionalRoleInfo">
<summary>AdditionalRoleInfo element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.AdditionalRoleSet">
<summary>AdditionalRoleSet element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.AdditionalRole">
<summary>AdditionalRole element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.PrimaryRole">
<summary>PrimaryRole element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.ArchiveResourceId">
<summary>ArchiveResourceId element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.ArchiveConversion">
<summary>ArchiveConversion element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.ArchiveNotify">
<summary>ArchiveNotify element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.ArchiveStatus">
<summary>ArchiveStatus element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.ArchiveComplete">
<summary>ArchiveComplete element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.ArchiveTotal">
<summary>ArchiveTotal element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.ArchiveTotalComplete">
<summary>ArchiveTotalComplete element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.ArchiveTotalFailure">
<summary>ArchiveTotalFailure element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.ArchiveFailure">
<summary>ArchiveFailure element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.ArchiveNotifyStatus">
<summary>ArchiveNotifyStatus element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.Publish">
<summary>Publish element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.PublishAuto">
<summary>PublishAuto element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.PublishOutsideDomain">
<summary>PublishOutsideDomain element</summary>
</member>
<member name="F:Google.GData.Documents.DocumentslistNametable.Description">
<summary>Description element</summary>
</member>
<member name="T:Google.GData.Documents.DocumentEntry">
<summary>
Entry API customization class for defining entries in an Event feed.
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentEntry.DOCUMENT_CATEGORY">
<summary>
a predefined atom category for Documents
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentEntry.SPREADSHEET_CATEGORY">
<summary>
a predefined atom category for Spreadsheets
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentEntry.PDF_CATEGORY">
<summary>
a predefined atom category for PDF
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentEntry.PRESENTATION_CATEGORY">
<summary>
a predefined atom category for Presentations
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentEntry.DRAWING_CATEGORY">
<summary>
a predefined atom category for Drawings
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentEntry.FOLDER_CATEGORY">
<summary>
a predefined atom category for folders
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentEntry.FORM_CATEGORY">
<summary>
a predefined atom category for forms
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentEntry.STARRED_CATEGORY">
<summary>
a predefined atom category for starred documents
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentEntry.TRASHED_CATEGORY">
<summary>
a predefined atom category for trashed documents
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentEntry.HIDDEN_CATEGORY">
<summary>
a predefined atom category for hidden documents
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentEntry.VIEWED_CATEGORY">
<summary>
a predefined atom category for VIEWED documents
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentEntry.MINE_CATEGORY">
<summary>
a predefined atom category for owned by user documents
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentEntry.PRIVATE_CATEGORY">
<summary>
a predefined atom category for private documents
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentEntry.SHARED_CATEGORY">
<summary>
a predefined atom category for shared documents
</summary>
</member>
<member name="M:Google.GData.Documents.DocumentEntry.#ctor">
<summary>
Constructs a new EventEntry instance with the appropriate category
to indicate that it is an event.
</summary>
</member>
<member name="M:Google.GData.Documents.DocumentEntry.AddOtherNamespaces(System.Xml.XmlWriter)">
<summary>
add the documentslist NS
</summary>
<param name="writer">The XmlWrite, where we want to add default namespaces to</param>
</member>
<member name="M:Google.GData.Documents.DocumentEntry.SkipNode(System.Xml.XmlNode)">
<summary>
Checks if this is a namespace declaration that we already added
</summary>
<param name="node">XmlNode to check</param>
<returns>True if this node should be skipped</returns>
</member>
<member name="P:Google.GData.Documents.DocumentEntry.IsDocument">
<summary>
Reflects if this entry is a word processor document
</summary>
</member>
<member name="P:Google.GData.Documents.DocumentEntry.IsSpreadsheet">
<summary>
Reflects if this entry is a spreadsheet document
</summary>
</member>
<member name="P:Google.GData.Documents.DocumentEntry.IsPresentation">
<summary>
Reflects if this entry is a presentation document
</summary>
</member>
<member name="P:Google.GData.Documents.DocumentEntry.IsDrawing">
<summary>
Reflects if this entry is a drawing document
</summary>
</member>
<member name="P:Google.GData.Documents.DocumentEntry.IsForm">
<summary>
Reflects if this entry is a form
</summary>
</member>
<member name="P:Google.GData.Documents.DocumentEntry.IsPDF">
<summary>
Reflects if this entry is a PDF document
</summary>
</member>
<member name="P:Google.GData.Documents.DocumentEntry.IsStarred">
<summary>
Reflects if this entry is starred
</summary>
</member>
<member name="P:Google.GData.Documents.DocumentEntry.IsFolder">
<summary>
returns true if this is a folder
</summary>
</member>
<member name="P:Google.GData.Documents.DocumentEntry.AccessControlList">
<summary>
returns the string that should represent the Uri to the access control list
</summary>
<returns>the value of the hret attribute for the acl feedlink, or null if not found</returns>
</member>
<member name="P:Google.GData.Documents.DocumentEntry.RevisionDocument">
<summary>
returns the string that should represent the Uri to the revision document
</summary>
<returns>the value of the hret attribute for the revisons feedlink, or null if not found</returns>
</member>
<member name="P:Google.GData.Documents.DocumentEntry.ParentFolders">
<summary>
returns the href value of the parent link releationship
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.Documents.DocumentEntry.ResourceId">
<summary>
Documents resource Identifier.
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.Documents.DocumentEntry.WritersCanInvite">
<summary>
Identifies if a collaborator can modify the ACLs of the document
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.Documents.DocumentEntry.LastViewed">
<summary>
Returns the last viewed timestamp
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.Documents.DocumentEntry.LastModified">
<summary>
returns the last modifiedBy Element
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.Documents.DocumentEntry.QuotaUsed">
<summary>
returns the last quotabytesused Element
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.Documents.DocumentEntry.Description">
<summary>
Identifies the description of the resource
</summary>
<returns></returns>
</member>
<member name="T:Google.GData.Documents.WritersCanInvite">
<summary>
Determines if a collaborator can modify a documents ACL
</summary>
</member>
<member name="M:Google.GData.Documents.WritersCanInvite.#ctor">
<summary>
default constructor for docs:writersCanInvite
</summary>
</member>
<member name="T:Google.GData.Documents.Description">
<summary>
Identifies the description of the resource
</summary>
</member>
<member name="M:Google.GData.Documents.Description.#ctor">
<summary>
default constructor for docs:description
</summary>
</member>
<member name="M:Google.GData.Documents.RevisionFeed.#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.Documents.RevisionFeed.CreateFeedEntry">
<summary>
this needs to get implemented by subclasses
</summary>
<returns>AtomEntry</returns>
</member>
<member name="M:Google.GData.Documents.RevisionEntry.#ctor">
<summary>
Constructs a new RevisionEntry instance.
</summary>
</member>
<member name="M:Google.GData.Documents.Publish.#ctor">
<summary>
default constructor for docs:publish
</summary>
</member>
<member name="M:Google.GData.Documents.PublishAuto.#ctor">
<summary>
default constructor for docs:publishAuto
</summary>
</member>
<member name="M:Google.GData.Documents.PublishOutsideDomain.#ctor">
<summary>
default constructor for docs:publishOutsideDomain
</summary>
</member>
<member name="T:Google.GData.Documents.DocumentsService">
<summary>
The Google Documents List data API allows client applications to upload
documents to Google Documents and list them in the form of Google data
API ("GData") feeds. Your client application can request a list of a user's
documents, and query the content in an existing document.
Here are some of the things you can do with the Documents List data API:
Upload the word processing documents and spreadsheets on
your computer to allow you to back them up or
collaborate online when editing.
Find all of your documents that contain specific keywords.
Get a list of spreadsheets which can be accessed through the Google Spreadsheets data API.
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentsService.DocumentsNamespace">
<summary>
the documents namespace
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentsService.Revisions">
<summary>
revisions prefix
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentsService.DocumentTypes">
<summary>
A Hashtable that expresses the allowed content types.
</summary>
</member>
<member name="M:Google.GData.Documents.DocumentsService.#cctor">
<summary>
Static constructor used to initialize GDocumentsAllowedTypes.
</summary>
</member>
<member name="M:Google.GData.Documents.DocumentsService.#ctor(System.String)">
<summary>
default constructor
</summary>
<param name="applicationName">the application name</param>
</member>
<member name="M:Google.GData.Documents.DocumentsService.Query(Google.GData.Documents.DocumentsListQuery)">
<summary>
overloaded to create typed version of Query
</summary>
<param name="feedQuery"></param>
<returns>EventFeed</returns>
</member>
<member name="M:Google.GData.Documents.DocumentsService.UploadDocument(System.String,System.String)">
<summary>
Simple method to upload a document, presentation, or spreadsheet
based upon the file extension.
</summary>
<param name="fileName">The full path to the file.</param>
<param name="documentName">The desired name of the document on the server.</param>
<returns>A DocumentEntry describing the created document.</returns>
</member>
<member name="M:Google.GData.Documents.DocumentsService.UploadDocument(System.String,System.String,System.String)">
<summary>
Simple method to upload a document, presentation, or spreadsheet
</summary>
<param name="fileName">The full path to the file.</param>
<param name="documentName">The desired name of the document on the server.</param>
<param name="contentType">The mime type of the document</param>
<returns>A DocumentEntry describing the created document.</returns>
</member>
<member name="M:Google.GData.Documents.DocumentsService.UploadFile(System.String,System.String,System.String,System.Boolean)">
<summary>
Simple method to upload an arbitrary file.
</summary>
<param name="fileName">The full path to the file.</param>
<param name="documentName">The desired name of the file on the server.</param>
<param name="contentType">The mime type of the file</param>
<param name="convert">Indiates if the document should be converted to a known type on the server</param>
<returns>A DocumentEntry describing the created document.</returns>
</member>
<member name="M:Google.GData.Documents.DocumentsService.InitVersionInformation">
<summary>
by default all services now use version 1 for the protocol.
this needs to be overridden by a service to specify otherwise.
Documents uses Version 3
</summary>
<returns></returns>
</member>
<member name="M:Google.GData.Documents.DocumentsService.Query(Google.GData.AccessControl.AclQuery)">
<summary>
overloaded to create typed version of Query
</summary>
<param name="feedQuery"></param>
<returns>EventFeed</returns>
</member>
<member name="M:Google.GData.Documents.DocumentsService.Query(Google.GData.Documents.ChangesQuery)">
<summary>
overloaded to create typed version of Query
</summary>
<param name="feedQuery"></param>
<returns>ChangesFeed</returns>
</member>
<member name="M:Google.GData.Documents.DocumentsService.Query(Google.GData.Documents.MetadataQuery)">
<summary>
overloaded to create typed version of Query
</summary>
<param name="feedQuery"></param>
<returns>EventFeed</returns>
</member>
<member name="M:Google.GData.Documents.DocumentsService.Query(Google.GData.Documents.ArchiveQuery)">
<summary>
overloaded to create typed version of Query
</summary>
<param name="feedQuery"></param>
<returns>ArchiveFeed</returns>
</member>
<member name="M:Google.GData.Documents.DocumentsService.Query(Google.GData.Documents.RevisionQuery)">
<summary>
overloaded to create typed version of Query
</summary>
<param name="feedQuery"></param>
<returns>RevisionFeed</returns>
</member>
<member name="M:Google.GData.Documents.DocumentsService.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.Documents.DocumentsListQuery">
<summary>
A subclass of FeedQuery, to create an Documents query URI.
Provides public properties that describe the different
aspects of the URI, as well as a composite URI.
Documents List supports the following standard GData query parameters:
alt, author, q, start-index, max-results, updated-min, updated-max, /category
For more information about the standard parameters, see the GData protocol reference document.
In addition to the standard GData query parameters, the Documents List data API uses the following parameters.
Parameter Meaning
title Specifies the search terms for the title of a document.
This parameter used without title-exact will only submit partial queries, not exact queries.
title-exact Specifies whether the title query should be taken as an exact string.
Meaningless without title. Possible values are true and false.
The Documents List data API supports the following categories.
Category: Document Type
Scheme: http://schemas.google.com/g/2005#kind
Term: http://schemas.google.com/docs/2007#type
Label: type
All documents of the corresponding type in the requesting users document list.
Type is currently one of (document|spreadsheet|presentation)
Category: Starred Status
Scheme: http://schemas.google.com/g/2005/labels
Term: starred
Label: starred
All documents that have been starred by the requesting user
Category: Containing Folders
Scheme: http://schemas.google.com/docs/2007/folders/user-email
Term: folder-id
Label: folder-name
All documents inside the given folder for the requesting user
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentsListQuery.documentsBaseUri">
<summary>
document feed base URI
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentsListQuery.documentsAclUri">
<summary>
document feed base URI with ACLs
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentsListQuery.foldersUriTemplate">
<summary>
template to construct a folder URI for a folder ID
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentsListQuery.aclsUriTemplate">
<summary>
template to get the ACLs for a resourceID
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentsListQuery.mediaUriTemplate">
<summary>
template to get the media for a resourceID
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentsListQuery.allFoldersUri">
<summary>
uri to get you all folders
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentsListQuery.allChangesTemplate">
<summary>
template to access the changes feed
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentsListQuery.metadataTemplate">
<summary>
template to access the metadata feed
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentsListQuery.revisionsUriTemplate">
<summary>
template to get a revision for a given resourceID and revisionID
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentsListQuery.archiveUri">
<summary>
URI to access the archive feed
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentsListQuery.DOCUMENTS">
<summary>
predefined query category for documents
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentsListQuery.SPREADSHEETS">
<summary>
predefined query category for spreadsheets
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentsListQuery.PRESENTATIONS">
<summary>
predefined query category for presentations
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentsListQuery.DRAWINGS">
<summary>
predefined query category for drawings
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentsListQuery.PDFS">
<summary>
predefined query category for PDFS
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentsListQuery.FORMS">
<summary>
predefined query category for Forms
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentsListQuery.STARRED">
<summary>
predefined query category for starred documents
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentsListQuery.VIEWED">
<summary>
predefined query category for starred documents
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentsListQuery.HIDDEN">
<summary>
predefined query category for hidden documents
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentsListQuery.TRASHED">
<summary>
predefined query category for trashed documents
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentsListQuery.MINE">
<summary>
predefined query category for user owned documents
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentsListQuery.PRIVATE">
<summary>
predefined query category for private documents
</summary>
</member>
<member name="F:Google.GData.Documents.DocumentsListQuery.SHARED">
<summary>
predefined query category for shared documents
</summary>
</member>
<member name="M:Google.GData.Documents.DocumentsListQuery.#ctor">
<summary>
base constructor
</summary>
</member>
<member name="M:Google.GData.Documents.DocumentsListQuery.#ctor(System.String)">
<summary>
base constructor, with initial queryUri
</summary>
<param name="queryUri">the query to use</param>
</member>
<member name="M:Google.GData.Documents.DocumentsListQuery.ParseUri(System.Uri)">
<summary>Parses custom properties out of the incoming URI</summary>
<param name="targetUri">A URI representing a query on a feed</param>
<returns>returns the base uri</returns>
</member>
<member name="M:Google.GData.Documents.DocumentsListQuery.CalculateQuery(System.String)">
<summary>Creates the partial URI query string based on all
set properties.</summary>
<returns> A string representing the query part of the URI.</returns>
</member>
<!-- Badly formed XML comment ignored for member "P:Google.GData.Documents.DocumentsListQuery.StartIndex" -->
<member name="P:Google.GData.Documents.DocumentsListQuery.Starred">
<summary>
Restricts the results to only starred documents
</summary>
</member>
<member name="P:Google.GData.Documents.DocumentsListQuery.Viewed">
<summary>
Restricts the results to only viewed documents
</summary>
</member>
<member name="P:Google.GData.Documents.DocumentsListQuery.Trashed">
<summary>
Restricts the results to only trashed documents
</summary>
</member>
<member name="P:Google.GData.Documents.DocumentsListQuery.Mine">
<summary>
Restricts the results to only documents owned by the user
</summary>
</member>
<member name="P:Google.GData.Documents.DocumentsListQuery.ShowFolders">
<summary>
if true, shows folders in the result
</summary>
</member>
<member name="P:Google.GData.Documents.DocumentsListQuery.ShowRoot">
<summary>
if true, shows root in the result
</summary>
</member>
<member name="P:Google.GData.Documents.DocumentsListQuery.Title">
<summary>
Restricts the results to only documents with titles matching a string.
</summary>
</member>
<member name="P:Google.GData.Documents.DocumentsListQuery.TitleExact">
<summary>
Restricts the results to only documents matching a string provided
by the Title property exactly. (No partial matches.)
</summary>
</member>
<member name="P:Google.GData.Documents.DocumentsListQuery.Owner">
<summary>
Searches for documents with a specific owner. Use the email address of the owner
</summary>
</member>
<member name="P:Google.GData.Documents.DocumentsListQuery.Writer">
<summary>
Searches for documents which can be written to by specific users.
Use a single email address or a comma separated list of email addresses.
</summary>
</member>
<member name="P:Google.GData.Documents.DocumentsListQuery.Reader">
<summary>
Searches for documents which can be read by specific users.
Use a single email address or a comma separated list of email addresses.
</summary>
</member>
<member name="P:Google.GData.Documents.DocumentsListQuery.Ocr">
<summary>
Specifies whether to attempt OCR on a .jpg, .png, of .gif upload.
</summary>
</member>
<member name="P:Google.GData.Documents.DocumentsListQuery.ShowDeleted">
<summary>
Specifies whether the query should return documents which are in the trash as well as other documents.
</summary>
</member>
<member name="P:Google.GData.Documents.DocumentsListQuery.TargetLanguage">
<summary>
Specifies the language to translate a document into.
</summary>
</member>
<member name="P:Google.GData.Documents.DocumentsListQuery.SourceLanguage">
<summary>
Specifies the source langugate to translate a document from.
</summary>
</member>
<member name="P:Google.GData.Documents.DocumentsListQuery.EditedMin">
<summary>
Lower bound on the last time a document was edited by the current user.
</summary>
</member>
<member name="P:Google.GData.Documents.DocumentsListQuery.EditedMax">
<summary>Upper bound on the last time a document was edited by the current user.</summary>
</member>
<member name="P:Google.GData.Documents.DocumentsListQuery.IncludeProfileInfo">
<summary>
Specifies whether the query should return additional profile information for the users.
</summary>
</member>
<member name="T:Google.GData.Documents.TextDocumentQuery">
<summary>
a subclass setup to just retrieve all word processor documents
</summary>
</member>
<member name="M:Google.GData.Documents.TextDocumentQuery.#ctor">
<summary>
base constructor
</summary>
</member>
<member name="T:Google.GData.Documents.SpreadsheetQuery">
<summary>
a subclass setup to just retrieve all spreadsheets
</summary>
</member>
<member name="M:Google.GData.Documents.SpreadsheetQuery.#ctor">
<summary>
base constructor
</summary>
</member>
<member name="T:Google.GData.Documents.PresentationsQuery">
<summary>
a subclass setup to just retrieve all presentations
</summary>
</member>
<member name="M:Google.GData.Documents.PresentationsQuery.#ctor">
<summary>
base constructor
</summary>
</member>
<member name="T:Google.GData.Documents.DrawingsQuery">
<summary>
a subclass setup to just retrieve all drawings
</summary>
</member>
<member name="M:Google.GData.Documents.DrawingsQuery.#ctor">
<summary>
base constructor
</summary>
</member>
<member name="T:Google.GData.Documents.PDFsQuery">
<summary>
a subclass setup to just retrieve all PDFs
</summary>
</member>
<member name="M:Google.GData.Documents.PDFsQuery.#ctor">
<summary>
base constructor
</summary>
</member>
<member name="T:Google.GData.Documents.FolderQuery">
<summary>
a subclass setup to just retrieve all Folders
</summary>
</member>
<member name="M:Google.GData.Documents.FolderQuery.#ctor">
<summary>
base constructor
</summary>
</member>
<member name="M:Google.GData.Documents.FolderQuery.#ctor(System.String)">
<summary>
base constructor
</summary>
</member>
<member name="T:Google.GData.Documents.ChangesQuery">
<summary>
a subclass setup to retrieve all changes
</summary>
</member>
<member name="M:Google.GData.Documents.ChangesQuery.#ctor">
<summary>
base constructor
</summary>
</member>
<member name="M:Google.GData.Documents.ChangesQuery.#ctor(System.String)">
<summary>
base constructor
</summary>
</member>
<member name="T:Google.GData.Documents.MetadataQuery">
<summary>
a subclass setup to retrieve information about a user account
</summary>
</member>
<member name="M:Google.GData.Documents.MetadataQuery.#ctor">
<summary>
base constructor
</summary>
</member>
<member name="M:Google.GData.Documents.MetadataQuery.#ctor(System.String)">
<summary>
base constructor
</summary>
</member>
<member name="T:Google.GData.Documents.ArchiveQuery">
<summary>
a query object used to interact with the Archive feed
</summary>
</member>
<member name="M:Google.GData.Documents.ArchiveQuery.#ctor(System.String)">
<summary>
base constructor
</summary>
</member>
<member name="T:Google.GData.Documents.RevisionQuery">
<summary>
a query object used to interact with the Revision feed
</summary>
</member>
<member name="M:Google.GData.Documents.RevisionQuery.#ctor(System.String)">
<summary>
base constructor
</summary>
</member>
<member name="F:Google.GData.Documents.ArchiveEntry.archiveResourceIds">
<summary>
ArchiveResourceId collection
</summary>
</member>
<member name="F:Google.GData.Documents.ArchiveEntry.archiveConversions">
<summary>
ArchiveConversion collection
</summary>
</member>
<member name="F:Google.GData.Documents.ArchiveEntry.archiveFailures">
<summary>
ArchiveFailure collection
</summary>
</member>
<member name="M:Google.GData.Documents.ArchiveEntry.#ctor">
<summary>
Constructs a new ArchiveEntry instance.
</summary>
</member>
<member name="P:Google.GData.Documents.ArchiveEntry.ArchiveResourceIds">
<summary>
ArchiveResourceId collection.
</summary>
</member>
<member name="P:Google.GData.Documents.ArchiveEntry.ArchiveConversions">
<summary>
ArchiveConversion collection.
</summary>
</member>
<member name="P:Google.GData.Documents.ArchiveEntry.ArchiveFailures">
<summary>
ArchiveFailure collection.
</summary>
</member>
<member name="P:Google.GData.Documents.ArchiveEntry.ArchiveNotify">
<summary>
ArchiveNotify.
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.Documents.ArchiveEntry.ArchiveStatus">
<summary>
ArchiveStatus.
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.Documents.ArchiveEntry.ArchiveComplete">
<summary>
ArchiveComplete.
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.Documents.ArchiveEntry.ArchiveTotal">
<summary>
ArchiveTotal.
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.Documents.ArchiveEntry.ArchiveTotalComplete">
<summary>
ArchiveTotalComplete.
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.Documents.ArchiveEntry.ArchiveTotalFailure">
<summary>
ArchiveTotalFailure.
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.Documents.ArchiveEntry.ArchiveNotifyStatus">
<summary>
ArchiveNotifyStatus.
</summary>
<returns></returns>
</member>
<member name="M:Google.GData.Documents.ArchiveResourceId.#ctor">
<summary>
default constructor for docs:archiveResourceId
</summary>
</member>
<member name="M:Google.GData.Documents.ArchiveConversion.#ctor">
<summary>
default constructor for docs:archiveConversion
</summary>
</member>
<member name="P:Google.GData.Documents.ArchiveConversion.Source">
<summary>
Source property accessor
</summary>
</member>
<member name="P:Google.GData.Documents.ArchiveConversion.Target">
<summary>
Target property accessor
</summary>
</member>
<member name="M:Google.GData.Documents.ArchiveNotify.#ctor">
<summary>
default constructor for docs:archiveNotify
</summary>
</member>
<member name="M:Google.GData.Documents.ArchiveStatus.#ctor">
<summary>
default constructor for docs:archiveStatus
</summary>
</member>
<member name="M:Google.GData.Documents.ArchiveComplete.#ctor">
<summary>
default constructor for docs:archiveComplete
</summary>
</member>
<member name="M:Google.GData.Documents.ArchiveTotal.#ctor">
<summary>
default constructor for docs:archiveTotal
</summary>
</member>
<member name="M:Google.GData.Documents.ArchiveTotalComplete.#ctor">
<summary>
default constructor for docs:archiveTotalComplete
</summary>
</member>
<member name="M:Google.GData.Documents.ArchiveTotalFailure.#ctor">
<summary>
default constructor for docs:archiveTotalFailure
</summary>
</member>
<member name="M:Google.GData.Documents.ArchiveFailure.#ctor">
<summary>
default constructor for docs:archiveFailure
</summary>
</member>
<member name="M:Google.GData.Documents.ArchiveNotifyStatus.#ctor">
<summary>
default constructor for docs:archiveNotifyStatus
</summary>
</member>
<member name="T:Google.Documents.Document">
<summary>
the base class for all documents in the document service. A document can represent folders, documents, spreadsheets etc.
</summary>
</member>
<member name="M:Google.Documents.Document.EnsureInnerObject">
<summary>
creates the inner document entry object when needed
</summary>
<returns></returns>
</member>
<member name="P:Google.Documents.Document.DocumentEntry">
<summary>
readonly accessor for the DocumentEntry that is underneath this object.
</summary>
<returns></returns>
</member>
<member name="P:Google.Documents.Document.Type">
<summary>
the type of the document entry
</summary>
<returns></returns>
</member>
<member name="P:Google.Documents.Document.ParentFolders">
<summary>
returns the href values of the parent link relationships
can be used to retrieve the parent folder
</summary>
<returns></returns>
</member>
<member name="P:Google.Documents.Document.ResourceId">
<summary>
returns the document resource id of the object.
this uses the gd:resourceId element
</summary>
<returns></returns>
</member>
<member name="P:Google.Documents.Document.WritersCanInvite">
<summary>
returns true if collaborators are allowed to modify
the document ACL list
</summary>
<returns></returns>
</member>
<member name="P:Google.Documents.Document.LastViewed">
<summary>
Returns the last viewed timestamp
</summary>
<returns></returns>
</member>
<member name="P:Google.Documents.Document.LastModified">
<summary>
returns the LastModifiedBy object indicating
who last edited the document
</summary>
<returns></returns>
</member>
<member name="P:Google.Documents.Document.QuotaBytesUsed">
<summary>
returns the quota used by the object. 0 if not available
</summary>
</member>
<member name="P:Google.Documents.Document.AccessControlList">
<summary>
returns the Uri to the access control list
</summary>
<returns>the value of the href attribute for the acl feedlink, or null if not found</returns>
</member>
<member name="P:Google.Documents.Document.RevisionDocument">
<summary>
returns the Uri to the revision document
</summary>
<returns>The value of the href attribute of the revisions feedlink, or null if not found</returns>
</member>
<member name="T:Google.Documents.Document.DocumentType">
<summary>
descripes the type of the document entry
</summary>
</member>
<member name="F:Google.Documents.Document.DocumentType.Document">
<summary>
a document
</summary>
</member>
<member name="F:Google.Documents.Document.DocumentType.Spreadsheet">
<summary>
a spreadsheet
</summary>
</member>
<member name="F:Google.Documents.Document.DocumentType.PDF">
<summary>
a pdf file
</summary>
</member>
<member name="F:Google.Documents.Document.DocumentType.Presentation">
<summary>
a presentation
</summary>
</member>
<member name="F:Google.Documents.Document.DocumentType.Folder">
<summary>
a folder
</summary>
</member>
<member name="F:Google.Documents.Document.DocumentType.Form">
<summary>
a form
</summary>
</member>
<member name="F:Google.Documents.Document.DocumentType.Drawing">
<summary>
a drawing
</summary>
</member>
<member name="F:Google.Documents.Document.DocumentType.Unknown">
<summary>
an unknown document type
</summary>
</member>
<member name="T:Google.Documents.Document.DownloadType">
<summary>
describes the download type, in what format you want to download the document
</summary>
</member>
<member name="F:Google.Documents.Document.DownloadType.txt">
<summary>
text file
</summary>
</member>
<member name="F:Google.Documents.Document.DownloadType.odt">
<summary>
open document format
</summary>
</member>
<member name="F:Google.Documents.Document.DownloadType.pdf">
<summary>
portable document format PDF
</summary>
</member>
<member name="F:Google.Documents.Document.DownloadType.html">
<summary>
html format
</summary>
</member>
<member name="F:Google.Documents.Document.DownloadType.rtf">
<summary>
rich text format
</summary>
</member>
<member name="F:Google.Documents.Document.DownloadType.doc">
<summary>
microsoft word format
</summary>
</member>
<member name="F:Google.Documents.Document.DownloadType.png">
<summary>
portable network graphics format
</summary>
</member>
<member name="F:Google.Documents.Document.DownloadType.zip">
<summary>
zip format
</summary>
</member>
<member name="F:Google.Documents.Document.DownloadType.swf">
<summary>
flash format
</summary>
</member>
<member name="F:Google.Documents.Document.DownloadType.ppt">
<summary>
Microsoft Powerpoint format
</summary>
</member>
<member name="F:Google.Documents.Document.DownloadType.xls">
<summary>
Microsoft Excel format
</summary>
</member>
<member name="F:Google.Documents.Document.DownloadType.csv">
<summary>
commma separated value format
</summary>
</member>
<member name="F:Google.Documents.Document.DownloadType.ods">
<summary>
open document spreadsheet format
</summary>
</member>
<member name="F:Google.Documents.Document.DownloadType.tsv">
<summary>
tab separated values format
</summary>
</member>
<member name="F:Google.Documents.Document.DownloadType.svg">
<summary>
Scalable Vector Graphics format
</summary>
</member>
<member name="F:Google.Documents.Document.DownloadType.jpeg">
<summary>
jpeg format
</summary>
</member>
<member name="T:Google.Documents.DocumentsRequest">
<summary>
The Google Documents List Data API allows client applications
to view and update documents (spreadsheets and word processor)
using a Google Data API feed. Your client application can request
a list of a user's documents, query the content of a
user's documents, and upload new documents.
</summary>
<example>
The following code illustrates a possible use of
the <c>DocumentsRequest</c> object:
<code>
RequestSettings settings = new RequestSettings("yourApp");
settings.PageSize = 50;
settings.AutoPaging = true;
DocumentsRequest c = new DocumentsRequest(settings);
Feed<Dcouments> feed = c.GetDocuments();
foreach (Document d in feed.Entries)
{
Console.WriteLine(d.Title);
}
</code>
</example>
</member>
<member name="M:Google.Documents.DocumentsRequest.#ctor(Google.GData.Client.RequestSettings)">
<summary>
default constructor for a DocumentsRequest
</summary>
<param name="settings"></param>
</member>
<member name="M:Google.Documents.DocumentsRequest.OnSetOtherProxies(System.Net.IWebProxy)">
<summary>
called to set additional proxies if required. Overloaded on the document service
</summary>
<param name="proxy"></param>
<returns></returns>
</member>
<member name="M:Google.Documents.DocumentsRequest.GetEverything">
<summary>
returns a Feed of all documents and folders for the authorized user
</summary>
<returns>a feed of everyting</returns>
</member>
<member name="M:Google.Documents.DocumentsRequest.GetDocuments">
<summary>
returns a Feed of all documents for the authorized user
</summary>
<returns>a feed of Documents</returns>
</member>
<member name="M:Google.Documents.DocumentsRequest.GetPresentations">
<summary>
returns a Feed of all presentations for the authorized user
</summary>
<returns>a feed of Documents</returns>
</member>
<member name="M:Google.Documents.DocumentsRequest.GetSpreadsheets">
<summary>
returns a Feed of all spreadsheets for the authorized user
</summary>
<returns>a feed of Documents</returns>
</member>
<member name="M:Google.Documents.DocumentsRequest.GetPDFs">
<summary>
returns a Feed of all pdf files for the authorized user
</summary>
<returns>a feed of Documents</returns>
</member>
<member name="M:Google.Documents.DocumentsRequest.GetMyDocuments">
<summary>
returns a Feed of all files that are owned by the authorized user
</summary>
<returns>a feed of Documents</returns>
</member>
<member name="M:Google.Documents.DocumentsRequest.GetFolders">
<summary>
returns a Feed of all folders for the authorized user
</summary>
<returns>a feed of Documents</returns>
</member>
<member name="M:Google.Documents.DocumentsRequest.GetViewed">
<summary>
returns all items the user has viewed recently
</summary>
<returns></returns>
</member>
<member name="M:Google.Documents.DocumentsRequest.GetForms">
<summary>
returns all forms for the authorized user
</summary>
<returns></returns>
</member>
<member name="M:Google.Documents.DocumentsRequest.GetFolderContent(Google.Documents.Document)">
<summary>
returns a feed of documents for the specified folder
</summary>
<param name="folder"></param>
<returns></returns>
</member>
<member name="M:Google.Documents.DocumentsRequest.CreateDocument(Google.Documents.Document)">
<summary>
this will create an empty document or folder, according to
the content of the newDocument parameter
</summary>
<param name="newDocument"></param>
<returns>the created document from the server</returns>
</member>
<member name="M:Google.Documents.DocumentsRequest.CreateFile(Google.Documents.Document)">
<summary>
this will create an empty document or folder, according to
the content of the newDocument parameter. This will append
the convert=false parameter to allow arbitrary file uploads
</summary>
<param name="newDocument"></param>
<returns>the created document from the server</returns>
</member>
<member name="M:Google.Documents.DocumentsRequest.MoveDocumentTo(Google.Documents.Document,Google.Documents.Document)">
<summary>
moves a document or a folder into a folder
</summary>
<param name="parent">this has to be a folder</param>
<param name="child">can be a folder or a document</param>
<returns></returns>
</member>
<member name="M:Google.Documents.DocumentsRequest.Download(Google.Documents.Document,Google.Documents.Document.DownloadType)">
<summary>
downloads a document.
</summary>
<param name="document">The document to download. It needs to have the document type set, as well as the id link</param>
<param name="type">The output format of the document you want to download</param>
<returns></returns>
</member>
<member name="M:Google.Documents.DocumentsRequest.Download(Google.Documents.Document,Google.Documents.Document.DownloadType,System.String,System.Int32)">
<summary>
downloads a document.
</summary>
<param name="document">The document to download. It needs to have the document type set, as well as the id link</param>
<param name="type">The output format of the document you want to download</param>
<param name="sheetNumber">When requesting a CSV or TSV file you must specify an additional parameter called
gid which indicates which grid, or sheet, you wish to get (the index is 0-based, so gid 1
actually refers to the second sheet sheet on a given spreadsheet). </param>
<param name="baseDomain">OBSOLETE - if null, default is used. Otherwise needs to specify the domain to download from, ending with a slash</param>
<returns></returns>
</member>
<member name="M:Google.Documents.DocumentsRequest.Download(Google.Documents.Document,System.String)">
<summary>
Downloads arbitrary documents, where the link to the document is inside the
content field.
</summary>
<param name="document">a Document Entry</param>
<param name="exportFormat">a string for the exportformat parameter or null</param>
<returns></returns>
</member>
<member name="M:Google.Documents.DocumentsRequest.BuildDocumentPartialExportUrl(System.String)">
<summary>
helper function used by the Download methods
</summary>
</member>
<member name="P:Google.Documents.DocumentsRequest.BaseUri">
<summary>
the base string to use for queries. Defaults to
DocumentsListQuery.documentsBaseUri
</summary>
<returns></returns>
</member>
<member name="M:Google.GData.Documents.MetadataFeed.#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.Documents.MetadataFeed.CreateFeedEntry">
<summary>
this needs to get implemented by subclasses
</summary>
<returns>AtomEntry</returns>
</member>
<member name="M:Google.GData.Documents.ArchiveFeed.#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.Documents.ArchiveFeed.CreateFeedEntry">
<summary>
this needs to get implemented by subclasses
</summary>
<returns>AtomEntry</returns>
</member>
<member name="M:Google.GData.Documents.ChangeEntry.#ctor">
<summary>
Constructs a new ChangeEntry instance.
</summary>
</member>
<member name="P:Google.GData.Documents.ChangeEntry.Changestamp">
<summary>
Changestamp.
</summary>
<returns></returns>
</member>
<member name="M:Google.GData.Documents.Changestamp.#ctor">
<summary>
default constructor for docs:changestamp
</summary>
</member>
<member name="M:Google.GData.Documents.ChangesFeed.#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.Documents.ChangesFeed.CreateFeedEntry">
<summary>
this needs to get implemented by subclasses
</summary>
<returns>AtomEntry</returns>
</member>
<member name="F:Google.GData.Documents.MetadataEntry.importFormats">
<summary>
ImportFormat collection
</summary>
</member>
<member name="F:Google.GData.Documents.MetadataEntry.exportFormats">
<summary>
ExportFormat collection
</summary>
</member>
<member name="F:Google.GData.Documents.MetadataEntry.features">
<summary>
Feature collection
</summary>
</member>
<member name="F:Google.GData.Documents.MetadataEntry.maxUploadSizes">
<summary>
MaxUploadSize collection
</summary>
</member>
<member name="F:Google.GData.Documents.MetadataEntry.additionalRoleInfos">
<summary>
AdditionalRoleInfo collection
</summary>
</member>
<member name="M:Google.GData.Documents.MetadataEntry.#ctor">
<summary>
Constructs a new MetadataEntry instance.
</summary>
</member>
<member name="P:Google.GData.Documents.MetadataEntry.QuotaBytesTotal">
<summary>
QuotaBytesTotal.
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.Documents.MetadataEntry.QuotaBytesUsed">
<summary>
QuotaBytesUsed.
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.Documents.MetadataEntry.QuotaBytesUsedInTrash">
<summary>
QuotaBytesUsedInTrash.
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.Documents.MetadataEntry.LargestChangestamp">
<summary>
LargestChangestamp.
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.Documents.MetadataEntry.RemainingChangestamps">
<summary>
RemainingChangestamps.
</summary>
<returns></returns>
</member>
<member name="P:Google.GData.Documents.MetadataEntry.ImportFormats">
<summary>
ImportFormat collection.
</summary>
</member>
<member name="P:Google.GData.Documents.MetadataEntry.ExportFormats">
<summary>
ExportFormat collection.
</summary>
</member>
<member name="P:Google.GData.Documents.MetadataEntry.Features">
<summary>
Feature collection.
</summary>
</member>
<member name="P:Google.GData.Documents.MetadataEntry.MaxUploadSizes">
<summary>
MaxUploadSize collection.
</summary>
</member>
<member name="P:Google.GData.Documents.MetadataEntry.AdditionalRoleInfos">
<summary>
AdditionalRoleInfo collection.
</summary>
</member>
<member name="M:Google.GData.Documents.QuotaBytesTotal.#ctor">
<summary>
default constructor for gd:quotaBytesTotal
</summary>
</member>
<member name="M:Google.GData.Documents.QuotaBytesUsedInTrash.#ctor">
<summary>
default constructor for docs:quotaBytesUsedInTrash
</summary>
</member>
<member name="M:Google.GData.Documents.LargestChangestamp.#ctor">
<summary>
default constructor for docs:largestChangestamp
</summary>
</member>
<member name="M:Google.GData.Documents.RemainingChangestamps.#ctor">
<summary>
default constructor for docs:remainingChangestamps
</summary>
</member>
<member name="M:Google.GData.Documents.ConversionFormat.#ctor(System.String)">
<summary>
base class for docs:importFormat and docs:exportFormat
</summary>
</member>
<member name="P:Google.GData.Documents.ConversionFormat.Source">
<summary>
Source property accessor
</summary>
</member>
<member name="P:Google.GData.Documents.ConversionFormat.Target">
<summary>
Target property accessor
</summary>
</member>
<member name="M:Google.GData.Documents.ImportFormat.#ctor">
<summary>
default constructor for docs:importFormat
</summary>
</member>
<member name="M:Google.GData.Documents.ExportFormat.#ctor">
<summary>
default constructor for docs:emportFormat
</summary>
</member>
<member name="M:Google.GData.Documents.Feature.#ctor">
<summary>
base class for docs:importFormat and docs:exportFormat
</summary>
</member>
<member name="P:Google.GData.Documents.Feature.Name">
<summary>
FeatureName property accessor
</summary>
</member>
<member name="P:Google.GData.Documents.Feature.Rate">
<summary>
FeatureRate property accessor
</summary>
</member>
<member name="M:Google.GData.Documents.FeatureName.#ctor">
<summary>
default constructor for docs:featureName
</summary>
</member>
<member name="M:Google.GData.Documents.FeatureRate.#ctor">
<summary>
default constructor for docs:featureRate
</summary>
</member>
<member name="M:Google.GData.Documents.MaxUploadSize.#ctor">
<summary>
default constructor for docs:maxUploadSize
</summary>
</member>
<member name="P:Google.GData.Documents.MaxUploadSize.Kind">
<summary>
Kind property accessor
</summary>
</member>
<member name="M:Google.GData.Documents.AdditionalRoleInfo.#ctor">
<summary>
default constructor for docs:additionalRoleInfo
</summary>
</member>
<member name="P:Google.GData.Documents.AdditionalRoleInfo.Kind">
<summary>
Kind property accessor
</summary>
</member>
<member name="M:Google.GData.Documents.AdditionalRoleSet.#ctor">
<summary>
default constructor for docs:additionalRoleSet
</summary>
</member>
<member name="P:Google.GData.Documents.AdditionalRoleSet.PrimaryRole">
<summary>
PrimaryRole property accessor
</summary>
</member>
<member name="M:Google.GData.Documents.AdditionalRole.#ctor">
<summary>
default constructor for docs:additionalRole
</summary>
</member>
</members>
</doc>
|