mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-09 21:09:51 +00:00
Remove previously obsoleted UsersClient.Keys property
This commit is contained in:
@@ -44,15 +44,6 @@ namespace Octokit.Reactive
|
||||
///</remarks>
|
||||
IObservableUserEmailsClient Email { get; }
|
||||
|
||||
/// <summary>
|
||||
/// A client for GitHub's User Keys API
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// See the <a href="http://developer.github.com/v3/users/keys/">Keys API documentation</a> for more information.
|
||||
///</remarks>
|
||||
[Obsolete("Ssh key information is now available under the GitSshKey property. This will be removed in a future update.")]
|
||||
IObservableUserKeysClient Keys { get; }
|
||||
|
||||
/// <summary>
|
||||
/// A client for GitHub's User Keys API
|
||||
/// </summary>
|
||||
|
||||
@@ -16,9 +16,6 @@ namespace Octokit.Reactive
|
||||
|
||||
Followers = new ObservableFollowersClient(client);
|
||||
Email = new ObservableUserEmailsClient(client);
|
||||
#pragma warning disable CS0618 // Type or member is obsolete
|
||||
Keys = new ObservableUserKeysClient(client);
|
||||
#pragma warning restore CS0618 // Type or member is obsolete
|
||||
GitSshKey = new ObservableUserKeysClient(client);
|
||||
GpgKey = new ObservableUserGpgKeysClient(client);
|
||||
Administration = new ObservableUserAdministrationClient(client);
|
||||
@@ -74,15 +71,6 @@ namespace Octokit.Reactive
|
||||
///</remarks>
|
||||
public IObservableUserEmailsClient Email { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// A client for GitHub's User Keys API
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// See the <a href="http://developer.github.com/v3/users/keys/">Keys API documentation</a> for more information.
|
||||
///</remarks>
|
||||
[Obsolete("Ssh key information is now available under the GitSshKey property. This will be removed in a future update.")]
|
||||
public IObservableUserKeysClient Keys { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// A client for GitHub's User Keys API
|
||||
/// </summary>
|
||||
|
||||
@@ -20,15 +20,6 @@ namespace Octokit
|
||||
///</remarks>
|
||||
IUserEmailsClient Email { get; }
|
||||
|
||||
/// <summary>
|
||||
/// A client for GitHub's User Keys API
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// See the <a href="http://developer.github.com/v3/users/keys/">Keys API documentation</a> for more information.
|
||||
///</remarks>
|
||||
[Obsolete("Ssh key information is now available under the GitSshKey property. This will be removed in a future update.")]
|
||||
IUserKeysClient Keys { get; }
|
||||
|
||||
/// <summary>
|
||||
/// A client for GitHub's User Keys API
|
||||
/// </summary>
|
||||
|
||||
@@ -21,9 +21,6 @@ namespace Octokit
|
||||
{
|
||||
Email = new UserEmailsClient(apiConnection);
|
||||
Followers = new FollowersClient(apiConnection);
|
||||
#pragma warning disable CS0618 // Type or member is obsolete
|
||||
Keys = new UserKeysClient(apiConnection);
|
||||
#pragma warning restore CS0618 // Type or member is obsolete
|
||||
GitSshKey = new UserKeysClient(apiConnection);
|
||||
GpgKey = new UserGpgKeysClient(apiConnection);
|
||||
|
||||
@@ -38,15 +35,6 @@ namespace Octokit
|
||||
///</remarks>
|
||||
public IUserEmailsClient Email { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// A client for GitHub's User Keys API
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// See the <a href="http://developer.github.com/v3/users/keys/">Keys API documentation</a> for more information.
|
||||
///</remarks>
|
||||
[Obsolete("Ssh key information is now available under the GitSshKey property. This will be removed in a future update.")]
|
||||
public IUserKeysClient Keys { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// A client for GitHub's User Keys API
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user