mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-06 03:55:55 +00:00
Example of getting content
This commit is contained in:
committed by
Haacked
parent
bed18b9980
commit
e9969d7350
@@ -1,9 +1,14 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Octokit
|
||||
{
|
||||
public interface IRepositoryContentsClient
|
||||
{
|
||||
Task<IReadOnlyList<DirectoryContent>> GetRoot(string owner, string name);
|
||||
|
||||
Task<IReadOnlyList<DirectoryContent>> GetForPath(string owner, string name, string path);
|
||||
|
||||
/// <summary>
|
||||
/// Gets the preferred README for the specified repository.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user