View on GitHub

GithubClient

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

GithubClient

GithubClient.Git.Blob

Blob.GetEndpoint(string, string, string) Method

The endpoint used to get a blob from the API

public static System.Uri GetEndpoint(string Owner, string Repo, string FileSha);

Parameters

Owner System.String

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

Repo System.String

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

FileSha System.String

Secure hashing algorithm

Returns

System.Uri

Remarks

The content in the response will always be Base64 encoded.

See Also