placeholders for missing endpoints

This commit is contained in:
2014-11-23 19:44:44 +01:00
parent 55c8605a6f
commit 672c1d0fa2
3 changed files with 46 additions and 2 deletions
-2
View File
@@ -1,11 +1,9 @@
using FeedlySharp.Models;
using System;
using System.Collections.Generic;
using System.Net;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using System.Linq;
namespace FeedlySharp
{
+23
View File
@@ -0,0 +1,23 @@
using FeedlySharp.Models;
using System;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
namespace FeedlySharp
{
public partial class FeedlyClient
{
public async Task FindFeeds(CancellationToken cancellationToken = default(CancellationToken))
{
throw new NotImplementedException();
}
public async Task SearchFeeds(CancellationToken cancellationToken = default(CancellationToken))
{
throw new NotImplementedException();
}
}
}
+23
View File
@@ -0,0 +1,23 @@
using FeedlySharp.Models;
using System;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
namespace FeedlySharp
{
public partial class FeedlyClient
{
public async Task GetStreamEntryIds(CancellationToken cancellationToken = default(CancellationToken))
{
throw new NotImplementedException();
}
public async Task GetStreamContent(CancellationToken cancellationToken = default(CancellationToken))
{
throw new NotImplementedException();
}
}
}