Skip to content

Commit

Permalink
(doc) Remove duplicate XML comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Jericho committed Oct 25, 2024
1 parent 846e2ed commit b37441f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 86 deletions.
2 changes: 1 addition & 1 deletion Source/ZoomNet/WebhookParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
namespace ZoomNet
{
/// <summary>
/// Allows parsing of information posted from Zoom.
/// Allows parsing of Webhooks posted from Zoom.
/// </summary>
public class WebhookParser : IWebhookParser
{
Expand Down
102 changes: 17 additions & 85 deletions Source/ZoomNet/ZoomClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,114 +64,50 @@ public static string Version
}
}

/// <summary>
/// Gets the resource which allows you to manage sub accounts.
/// </summary>
/// <value>
/// The accounts resource.
/// </value>
/// <inheritdoc/>
public IAccounts Accounts { get; private set; }

/// <summary>
/// Gets the resource which allows you to manage chat channels, messages, etc.
/// </summary>
/// <value>
/// The chat resource.
/// </value>
/// <inheritdoc/>
public IChat Chat { get; private set; }

/// <summary>
/// Gets the resource which allows you to manage cloud recordings.
/// </summary>
/// <value>
/// The recordings resource.
/// </value>
/// <inheritdoc/>
public ICloudRecordings CloudRecordings { get; private set; }

/// <summary>
/// Gets the resource which allows you to manage contacts.
/// </summary>
/// <value>
/// The contacts resource.
/// </value>
/// <inheritdoc/>
public IContacts Contacts { get; private set; }

/// <summary>
/// Gets the resource which allows you to notify Zoom that you comply with the policy which requires
/// you to handle user's data in accordance to the user's preference after the user uninstalls your app.
/// </summary>
/// <value>
/// The data compliance resource.
/// </value>
/// <inheritdoc/>
[Obsolete("The Data Compliance API is deprecated")]
public IDataCompliance DataCompliance { get; private set; }

/// <summary>
/// Gets the resource which allows you to manage meetings.
/// </summary>
/// <value>
/// The meetings resource.
/// </value>
/// <inheritdoc/>
public IMeetings Meetings { get; private set; }

/// <summary>
/// Gets the resource which allows you to manage meetings that occured in the past.
/// </summary>
/// <value>
/// The past meetings resource.
/// </value>
/// <inheritdoc/>
public IPastMeetings PastMeetings { get; private set; }

/// <summary>
/// Gets the resource which allows you to manage webinars that occured in the past.
/// </summary>
/// <value>
/// The past webinars resource.
/// </value>
/// <inheritdoc/>
public IPastWebinars PastWebinars { get; private set; }

/// <summary>
/// Gets the resource which allows you to manage roles.
/// </summary>
/// <value>
/// The roles resource.
/// </value>
/// <inheritdoc/>
public IRoles Roles { get; private set; }

/// <summary>
/// Gets the resource which allows you to manage users.
/// </summary>
/// <value>
/// The users resource.
/// </value>
/// <inheritdoc/>
public IUsers Users { get; private set; }

/// <summary>
/// Gets the resource which allows you to manage webinars.
/// </summary>
/// <value>
/// The webinars resource.
/// </value>
/// <inheritdoc/>
public IWebinars Webinars { get; private set; }

/// <summary>
/// Gets the resource which allows you to view metrics.
/// </summary>
/// <inheritdoc/>
public IDashboards Dashboards { get; private set; }

/// <summary>
/// Gets the resource which allows you to view reports.
/// </summary>
/// <inheritdoc/>
public IReports Reports { get; private set; }

/// <summary>
/// Gets the resource which allows you to manage call logs.
/// </summary>
/// <inheritdoc/>
public ICallLogs CallLogs { get; private set; }

/// <summary>
/// Gets the resource which allows you to manage chatbot messages.
/// </summary>
/// <inheritdoc/>
public IChatbot Chatbot { get; private set; }

/// <inheritdoc/>
Expand All @@ -180,9 +116,7 @@ public static string Version
/// <inheritdoc/>
public ISms Sms { get; private set; }

/// <summary>
/// Gets the resource that allows you to manage groups.
/// </summary>
/// <inheritdoc/>
public IGroups Groups { get; private set; }

#endregion
Expand Down Expand Up @@ -310,9 +244,7 @@ private ZoomClient(IConnectionInfo connectionInfo, HttpClient httpClient, bool d

#region PUBLIC METHODS

/// <summary>
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
/// </summary>
/// <inheritdoc/>
public void Dispose()
{
// Call 'Dispose' to release resources
Expand Down

0 comments on commit b37441f

Please sign in to comment.