Built mkdocs | Travis Build 17

This commit is contained in:
Travis-CI 2015-11-07 19:47:03 +00:00
parent a7d8f1e0c9
commit 1d0190eed4
2 changed files with 3 additions and 3 deletions

View File

@ -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&lt;T&gt; page)</code> and <code>GetPreviousPage(Paging&lt;T&gt; 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(&quot;1122095781&quot;, &quot;4EcNf2l8rXInbJOf3tQdgU&quot;, &quot;&quot;, 50);

View File

@ -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"
},
{