View on GitHub

GithubClient

A C# Dll library for working with the Github Rest API

GithubClient

GithubClient.Methods.Blobs

Blobs.GetBlob(string, string, string, string) Method

Returns a blob object from the Github API

public static System.Threading.Tasks.Task<GithubClient.Git.Blob> GetBlob(string PAT, string Owner, string Name, string Sha);

Parameters

PAT System.String

Personal Access Token

Owner System.String

The account owner of the repository. This can also be the organization name. The name is not case sensitive.

Name System.String

The name of the repository. The name is not case sensitive.

Sha System.String

Secure hashing algorithm

Returns

System.Threading.Tasks.Task<Blob> A blob object

See Also