mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-25 07:34:57 +00:00
24 lines
817 B
C#
24 lines
817 B
C#
using System;
|
|
|
|
namespace Octokit.Reactive
|
|
{
|
|
/// <summary>
|
|
/// A client for GitHub's Feeds API.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/activity/feeds/">Feeds API documentation</a> for more information
|
|
/// </remarks>
|
|
public interface IObservableFeedsClient
|
|
{
|
|
/// <summary>
|
|
/// Gets all the feeds available to the authenticating user
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// http://developer.github.com/v3/activity/feeds/#list-feeds
|
|
/// </remarks>
|
|
/// <returns>All the public <see cref="Feed"/>s for the particular user.</returns>
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate")]
|
|
IObservable<Feed> GetFeeds();
|
|
}
|
|
}
|