diff --git a/UptimeSharp/Components/Alert.cs b/UptimeSharp/Components/Alert.cs index 9b5a81e..20bfc77 100644 --- a/UptimeSharp/Components/Alert.cs +++ b/UptimeSharp/Components/Alert.cs @@ -59,8 +59,7 @@ namespace UptimeSharp /// /// Removes an alert. /// - /// The type. - /// The value. + /// The alert ID. /// public bool DeleteAlert(int alertID) { diff --git a/UptimeSharp/Components/Monitor.cs b/UptimeSharp/Components/Monitor.cs index 9d3c259..3161bb6 100644 --- a/UptimeSharp/Components/Monitor.cs +++ b/UptimeSharp/Components/Monitor.cs @@ -14,6 +14,9 @@ namespace UptimeSharp /// Retrieves specified monitors from UptimeRobot /// /// monitor list + /// The custom uptime ratio. + /// if set to true [show log]. + /// if set to true [show alerts]. /// public List Retrieve(int[] monitors = null, float[] customUptimeRatio = null, bool showLog = false, bool showAlerts = true) { @@ -43,7 +46,7 @@ namespace UptimeSharp /// /// Deletes a monitor /// - /// The unique identifier for the monitor. + /// a specific monitor ID /// success state public bool Delete(int monitorId) { @@ -73,6 +76,8 @@ namespace UptimeSharp /// The keyword value. /// Type of the keyword. /// A ID list of existing alerts to notify. + /// The HTTP password. + /// The HTTP username. /// /// success state ///