@@ -51,6 +51,7 @@ public CheckTypeId(string id)
5151 /// <summary>
5252 /// Gets a <see cref="CheckTypeId"/> representing a remote DNS check.
5353 /// </summary>
54+ /// <seealso cref="DnsCheckDetails"/>
5455 public static CheckTypeId RemoteDns
5556 {
5657 get
@@ -62,6 +63,7 @@ public static CheckTypeId RemoteDns
6263 /// <summary>
6364 /// Gets a <see cref="CheckTypeId"/> representing a remote FTP banner check.
6465 /// </summary>
66+ /// <seealso cref="FtpBannerCheckDetails"/>
6567 public static CheckTypeId RemoteFtpBanner
6668 {
6769 get
@@ -73,6 +75,7 @@ public static CheckTypeId RemoteFtpBanner
7375 /// <summary>
7476 /// Gets a <see cref="CheckTypeId"/> representing a remote HTTP check.
7577 /// </summary>
78+ /// <seealso cref="HttpCheckDetails"/>
7679 public static CheckTypeId RemoteHttp
7780 {
7881 get
@@ -84,6 +87,7 @@ public static CheckTypeId RemoteHttp
8487 /// <summary>
8588 /// Gets a <see cref="CheckTypeId"/> representing a remote IMAP check.
8689 /// </summary>
90+ /// <seealso cref="ImapBannerCheckDetails"/>
8791 public static CheckTypeId RemoteImapBanner
8892 {
8993 get
@@ -95,6 +99,7 @@ public static CheckTypeId RemoteImapBanner
9599 /// <summary>
96100 /// Gets a <see cref="CheckTypeId"/> representing a remote SQL Server check.
97101 /// </summary>
102+ /// <seealso cref="MssqlBannerCheckDetails"/>
98103 public static CheckTypeId RemoteMssqlBanner
99104 {
100105 get
@@ -106,6 +111,7 @@ public static CheckTypeId RemoteMssqlBanner
106111 /// <summary>
107112 /// Gets a <see cref="CheckTypeId"/> representing a remote MySQL check.
108113 /// </summary>
114+ /// <seealso cref="MysqlBannerCheckDetails"/>
109115 public static CheckTypeId RemoteMysqlBanner
110116 {
111117 get
@@ -117,6 +123,7 @@ public static CheckTypeId RemoteMysqlBanner
117123 /// <summary>
118124 /// Gets a <see cref="CheckTypeId"/> representing a remote PING check.
119125 /// </summary>
126+ /// <seealso cref="PingCheckDetails"/>
120127 public static CheckTypeId RemotePing
121128 {
122129 get
@@ -128,6 +135,7 @@ public static CheckTypeId RemotePing
128135 /// <summary>
129136 /// Gets a <see cref="CheckTypeId"/> representing a remote POP3 check.
130137 /// </summary>
138+ /// <seealso cref="Pop3CheckDetails"/>
131139 public static CheckTypeId RemotePop3Banner
132140 {
133141 get
@@ -139,6 +147,7 @@ public static CheckTypeId RemotePop3Banner
139147 /// <summary>
140148 /// Gets a <see cref="CheckTypeId"/> representing a remote PostgreSQL check.
141149 /// </summary>
150+ /// <seealso cref="PostgresqlBannerCheckDetails"/>
142151 public static CheckTypeId RemotePostgresqlBanner
143152 {
144153 get
@@ -150,6 +159,7 @@ public static CheckTypeId RemotePostgresqlBanner
150159 /// <summary>
151160 /// Gets a <see cref="CheckTypeId"/> representing a remote SMTP banner check.
152161 /// </summary>
162+ /// <seealso cref="SmtpBannerCheckDetails"/>
153163 public static CheckTypeId RemoteSmtpBanner
154164 {
155165 get
@@ -161,6 +171,7 @@ public static CheckTypeId RemoteSmtpBanner
161171 /// <summary>
162172 /// Gets a <see cref="CheckTypeId"/> representing a remote SMTP check.
163173 /// </summary>
174+ /// <seealso cref="SmtpCheckDetails"/>
164175 public static CheckTypeId RemoteSmtp
165176 {
166177 get
@@ -172,6 +183,7 @@ public static CheckTypeId RemoteSmtp
172183 /// <summary>
173184 /// Gets a <see cref="CheckTypeId"/> representing a remote SSH check.
174185 /// </summary>
186+ /// <seealso cref="SshCheckDetails"/>
175187 public static CheckTypeId RemoteSsh
176188 {
177189 get
@@ -183,6 +195,7 @@ public static CheckTypeId RemoteSsh
183195 /// <summary>
184196 /// Gets a <see cref="CheckTypeId"/> representing a remote TCP check.
185197 /// </summary>
198+ /// <seealso cref="TcpCheckDetails"/>
186199 public static CheckTypeId RemoteTcp
187200 {
188201 get
@@ -194,6 +207,7 @@ public static CheckTypeId RemoteTcp
194207 /// <summary>
195208 /// Gets a <see cref="CheckTypeId"/> representing a remote telnet banner check.
196209 /// </summary>
210+ /// <seealso cref="TelnetBannerCheckDetails"/>
197211 public static CheckTypeId RemoteTelnetBanner
198212 {
199213 get
@@ -205,6 +219,7 @@ public static CheckTypeId RemoteTelnetBanner
205219 /// <summary>
206220 /// Gets a <see cref="CheckTypeId"/> representing an agent filesystem check.
207221 /// </summary>
222+ /// <seealso cref="FilesystemCheckDetails"/>
208223 public static CheckTypeId AgentFilesystem
209224 {
210225 get
@@ -216,6 +231,7 @@ public static CheckTypeId AgentFilesystem
216231 /// <summary>
217232 /// Gets a <see cref="CheckTypeId"/> representing an agent memory check.
218233 /// </summary>
234+ /// <seealso cref="MemoryCheckDetails"/>
219235 public static CheckTypeId AgentMemory
220236 {
221237 get
@@ -227,6 +243,7 @@ public static CheckTypeId AgentMemory
227243 /// <summary>
228244 /// Gets a <see cref="CheckTypeId"/> representing an agent load average check.
229245 /// </summary>
246+ /// <seealso cref="LoadAverageCheckDetails"/>
230247 public static CheckTypeId AgentLoadAverage
231248 {
232249 get
@@ -238,6 +255,7 @@ public static CheckTypeId AgentLoadAverage
238255 /// <summary>
239256 /// Gets a <see cref="CheckTypeId"/> representing an agent CPU check.
240257 /// </summary>
258+ /// <seealso cref="CpuCheckDetails"/>
241259 public static CheckTypeId AgentCpu
242260 {
243261 get
@@ -249,6 +267,7 @@ public static CheckTypeId AgentCpu
249267 /// <summary>
250268 /// Gets a <see cref="CheckTypeId"/> representing an agent disk check.
251269 /// </summary>
270+ /// <seealso cref="DiskCheckDetails"/>
252271 public static CheckTypeId AgentDisk
253272 {
254273 get
@@ -260,6 +279,7 @@ public static CheckTypeId AgentDisk
260279 /// <summary>
261280 /// Gets a <see cref="CheckTypeId"/> representing an agent network check.
262281 /// </summary>
282+ /// <seealso cref="NetworkCheckDetails"/>
263283 public static CheckTypeId AgentNetwork
264284 {
265285 get
@@ -271,6 +291,7 @@ public static CheckTypeId AgentNetwork
271291 /// <summary>
272292 /// Gets a <see cref="CheckTypeId"/> representing an agent plug-in check.
273293 /// </summary>
294+ /// <seealso cref="PluginCheckDetails"/>
274295 public static CheckTypeId AgentPlugin
275296 {
276297 get
0 commit comments