comparison ServerMonitor/Properties/Settings.Designer.cs @ 29:f6235dc0a8ec

Add ability to play a sound on check failure.
author Brad Greco <brad@bgreco.net>
date Fri, 14 Jun 2019 21:01:55 -0400
parents 75ca86e0862c
children
comparison
equal deleted inserted replaced
28:437442cd8090 29:f6235dc0a8ec
128 } 128 }
129 set { 129 set {
130 this["HideToNotificationArea"] = value; 130 this["HideToNotificationArea"] = value;
131 } 131 }
132 } 132 }
133
134 [global::System.Configuration.UserScopedSettingAttribute()]
135 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
136 [global::System.Configuration.DefaultSettingValueAttribute("0")]
137 public string ErrorSound {
138 get {
139 return ((string)(this["ErrorSound"]));
140 }
141 set {
142 this["ErrorSound"] = value;
143 }
144 }
145
146 [global::System.Configuration.UserScopedSettingAttribute()]
147 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
148 [global::System.Configuration.DefaultSettingValueAttribute("0")]
149 public string WarningSound {
150 get {
151 return ((string)(this["WarningSound"]));
152 }
153 set {
154 this["WarningSound"] = value;
155 }
156 }
157
158 [global::System.Configuration.UserScopedSettingAttribute()]
159 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
160 [global::System.Configuration.DefaultSettingValueAttribute("0")]
161 public string InformationSound {
162 get {
163 return ((string)(this["InformationSound"]));
164 }
165 set {
166 this["InformationSound"] = value;
167 }
168 }
133 } 169 }
134 } 170 }