18
18
*
19
19
* live_connect.h
20
20
*
21
- * Simple API for connecting to Windows Live services, such as SkyDrive and Hotmail.
21
+ * Simple API for connecting to Windows Live services, such as OneDrive and Hotmail.
22
22
* Only supported for App Store apps.
23
23
*
24
24
* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
@@ -70,16 +70,12 @@ namespace web { namespace live {
70
70
}
71
71
72
72
// / <summary>
73
- // / Represents a session connected to Windows Live services like Calendar, Contacts, SkyDrive , and the
73
+ // / Represents a session connected to Windows Live services like Calendar, Contacts, OneDrive , and the
74
74
// / user profile, by using the Live Connect REST API. It is a thin layer on top of the Casablanca HTTP
75
75
// / library, tailored to the usage scenarios for Windows Live clients.
76
76
// / </summary>
77
77
// / <remarks>
78
- // / See http://msdn.microsoft.com/en-us/live/ for details on using the Live Connect REST API. The
79
- // / 'Interactive SDK' is particularly useful in examining its behavior and capabilities. The REST API
80
- // / reference is found under 'Docs >> Core Concepts'. Examples of user profile scenarios are under
81
- // / 'Docs >> Identity API', SkyDrive under 'Docs >> SkyDrive API', contacts and calendars under
82
- // / 'Docs >> Hotmail API'.
78
+ // / See http://msdn.microsoft.com/onedrive/ for details on using the OneDrive REST API.
83
79
// /
84
80
// / Note: when passing resource paths into the functions in this class, it is not necessary to add the
85
81
// / leading '/' path character. It will be added automatically when constructing the HTTP request.
@@ -256,9 +252,9 @@ namespace web { namespace live {
256
252
}
257
253
258
254
// / <summary>
259
- // / Download a file from SkyDrive .
255
+ // / Download a file from OneDrive .
260
256
// / </summary>
261
- // / <param name="file_id">The SkyDrive file id to download.</param>
257
+ // / <param name="file_id">The OneDrive file id to download.</param>
262
258
// / <param name="stream">A stream into which the contents of the file should be placed.</param>
263
259
// / <returns>The size of the downloaded resource.</returns>
264
260
// / <remarks></remarks>
@@ -288,9 +284,9 @@ namespace web { namespace live {
288
284
}
289
285
290
286
// / <summary>
291
- // / Download a file from SkyDrive .
287
+ // / Download a file from OneDrive .
292
288
// / </summary>
293
- // / <param name="file_id">The SkyDrive file id to download.</param>
289
+ // / <param name="file_id">The OneDrive file id to download.</param>
294
290
// / <param name="file">A StorageFile reference identifying the target for the downloaded data.</param>
295
291
// / <returns>The size of the downloaded resource.</returns>
296
292
// / <remarks></remarks>
@@ -336,9 +332,9 @@ namespace web { namespace live {
336
332
}
337
333
338
334
// / <summary>
339
- // / Upload a file to SkyDrive .
335
+ // / Upload a file to OneDrive .
340
336
// / </summary>
341
- // / <param name="path">The path of the file location in SkyDrive . It should be of the form "folder.NNNNNNNNNN/files/file_name.ext"</param>
337
+ // / <param name="path">The path of the file location in OneDrive . It should be of the form "folder.NNNNNNNNNN/files/file_name.ext"</param>
342
338
// / <param name="stream">A stream from which data for the file will be read.</param>
343
339
// / <param name="content_length">The size of the data to upload.</param>
344
340
// / <returns>The JSON value resulting from the request, containing metadata about the uploaded file.</returns>
@@ -362,9 +358,9 @@ namespace web { namespace live {
362
358
}
363
359
364
360
// / <summary>
365
- // / Upload a file to SkyDrive .
361
+ // / Upload a file to OneDrive .
366
362
// / </summary>
367
- // / <param name="path">The path of the file location in SkyDrive . It should be of the form "folder.NNNNNNNNNN/files/file_name.ext"</param>
363
+ // / <param name="path">The path of the file location in OneDrive . It should be of the form "folder.NNNNNNNNNN/files/file_name.ext"</param>
368
364
// / <param name="file">A StorageFile reference identifying the source of the uploaded data.</param>
369
365
// / <param name="content_length">The size of the data to upload.</param>
370
366
// / <returns>The JSON value resulting from the request, containing metadata about the uploaded file.</returns>
0 commit comments