mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
16 lines
690 B
C#
16 lines
690 B
C#
namespace Octokit
|
|
{
|
|
/// <summary>
|
|
/// Provides a property for the Last recorded API information
|
|
/// </summary>
|
|
public interface IApiInfoProvider
|
|
{
|
|
/// <summary>
|
|
/// Gets the latest API Info - this will be null if no API calls have been made
|
|
/// </summary>
|
|
/// <returns><seealso cref="ApiInfo"/> representing the information returned as part of an API call</returns>
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate"), System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate")]
|
|
ApiInfo GetLastApiInfo();
|
|
}
|
|
}
|