mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-23 14:46:26 +00:00
Built mkdocs | Travis Build 17
This commit is contained in:
parent
a7d8f1e0c9
commit
1d0190eed4
@ -170,7 +170,7 @@
|
||||
<div class="col-md-9" role="main">
|
||||
|
||||
<h2 id="paging-methods">Paging-Methods</h2>
|
||||
<p>The <code>SpotifyWebAPI</code> features two paging-helper Methods, <code>GetNextPage()</code> and <code>GetPreviousPage()</code>.
|
||||
<p>The <code>SpotifyWebAPI</code> features two paging-helper Methods, <code>GetNextPage(Paging<T> page)</code> and <code>GetPreviousPage(Paging<T> page)</code>.
|
||||
Both are an easy way to receive the next/previous page of a Paging-Object.</p>
|
||||
<p>Sample:</p>
|
||||
<pre><code class="csharp">var playlistTracks = _spotify.GetPlaylistTracks("1122095781", "4EcNf2l8rXInbJOf3tQdgU", "", 50);
|
||||
|
@ -347,12 +347,12 @@
|
||||
},
|
||||
{
|
||||
"location": "/SpotifyWebAPI/util/",
|
||||
"text": "Paging-Methods\n\n\nThe \nSpotifyWebAPI\n features two paging-helper Methods, \nGetNextPage()\n and \nGetPreviousPage()\n.\nBoth are an easy way to receive the next/previous page of a Paging-Object.\n\n\nSample:\n\n\nvar playlistTracks = _spotify.GetPlaylistTracks(\n1122095781\n, \n4EcNf2l8rXInbJOf3tQdgU\n, \n, 50);\nwhile (true)\n{\n Console.WriteLine(playlistTracks.Items.Count);\n if (!playlistTracks.HasNextPage())\n break;\n playlistTracks = _spotify.GetNextPage(playlistTracks);\n}",
|
||||
"text": "Paging-Methods\n\n\nThe \nSpotifyWebAPI\n features two paging-helper Methods, \nGetNextPage(Paging\nT\n page)\n and \nGetPreviousPage(Paging\nT\n page)\n.\nBoth are an easy way to receive the next/previous page of a Paging-Object.\n\n\nSample:\n\n\nvar playlistTracks = _spotify.GetPlaylistTracks(\n1122095781\n, \n4EcNf2l8rXInbJOf3tQdgU\n, \n, 50);\nwhile (true)\n{\n Console.WriteLine(playlistTracks.Items.Count);\n if (!playlistTracks.HasNextPage())\n break;\n playlistTracks = _spotify.GetNextPage(playlistTracks);\n}",
|
||||
"title": "- Util"
|
||||
},
|
||||
{
|
||||
"location": "/SpotifyWebAPI/util/#paging-methods",
|
||||
"text": "The SpotifyWebAPI features two paging-helper Methods, GetNextPage() and GetPreviousPage() .\nBoth are an easy way to receive the next/previous page of a Paging-Object. Sample: var playlistTracks = _spotify.GetPlaylistTracks( 1122095781 , 4EcNf2l8rXInbJOf3tQdgU , , 50);\nwhile (true)\n{\n Console.WriteLine(playlistTracks.Items.Count);\n if (!playlistTracks.HasNextPage())\n break;\n playlistTracks = _spotify.GetNextPage(playlistTracks);\n}",
|
||||
"text": "The SpotifyWebAPI features two paging-helper Methods, GetNextPage(Paging T page) and GetPreviousPage(Paging T page) .\nBoth are an easy way to receive the next/previous page of a Paging-Object. Sample: var playlistTracks = _spotify.GetPlaylistTracks( 1122095781 , 4EcNf2l8rXInbJOf3tQdgU , , 50);\nwhile (true)\n{\n Console.WriteLine(playlistTracks.Items.Count);\n if (!playlistTracks.HasNextPage())\n break;\n playlistTracks = _spotify.GetNextPage(playlistTracks);\n}",
|
||||
"title": "Paging-Methods"
|
||||
},
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user