mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +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>
|
||||
|
||||
Reference in New Issue
Block a user