comparison ServerMonitor/Objects/Server.cs @ 39:7645122aa7a9

Get it working under Mono
author Brad Greco <brad@bgreco.net>
date Tue, 09 Jun 2020 20:59:00 -0400
parents b5502ce8cb1f
children
comparison
equal deleted inserted replaced
38:8ab98a803d39 39:7645122aa7a9
250 250
251 /// <summary>Possible statuses of the private key file.</summary> 251 /// <summary>Possible statuses of the private key file.</summary>
252 public enum KeyStatus 252 public enum KeyStatus
253 { 253 {
254 /// <summary>The private key file is closed for an unspecified reason.</summary> 254 /// <summary>The private key file is closed for an unspecified reason.</summary>
255 Closed, 255 Closed = 0,
256 /// <summary>The private key file is accessible and open.</summary> 256 /// <summary>The private key file is accessible and open.</summary>
257 Open, 257 Open = 1,
258 /// <summary>The private key file is not accessible (missing, access denied, etc).</summary> 258 /// <summary>The private key file is not accessible (missing, access denied, etc).</summary>
259 NotAccessible, 259 NotAccessible = 2,
260 /// <summary>The private key file is encrypted and the user has not entered the password yet.</summary> 260 /// <summary>The private key file is encrypted and the user has not entered the password yet.</summary>
261 NeedPassword, 261 NeedPassword = 3,
262 } 262 }
263 263
264 } 264 }