mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-19 21:55:12 +00:00
21 lines
656 B
C#
21 lines
656 B
C#
using System;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace Octokit.Reactive
|
|
{
|
|
public interface IObservableGistsClient
|
|
{
|
|
IObservableGistCommentsClient Comment { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets a gist
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// http://developer.github.com/v3/gists/#get-a-single-gist
|
|
/// </remarks>
|
|
/// <param name="id">The id of the gist</param>
|
|
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
|
Justification = "Method makes a network request")]
|
|
IObservable<Gist> Get(string id);
|
|
}
|
|
} |