From 103f78a75893dc561b1d5e5f5649215b712786ac Mon Sep 17 00:00:00 2001 From: ceee Date: Sat, 24 Aug 2013 01:52:14 +0200 Subject: [PATCH] update inline docs --- UptimeSharp/Components/Alert.cs | 3 +-- UptimeSharp/Components/Monitor.cs | 7 ++++++- 2 files changed, 7 insertions(+), 3 deletions(-) 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 ///