Skip to content

Commit c1fbcac

Browse files
committed
Fix alertState property name in OPC-UA/DA.
1 parent 9277c57 commit c1fbcac

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

src/OPC-DA-Client/TagsCreation.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public class rtData
4848
[BsonDefaultValue(false)]
4949
public BsonBoolean alerted { get; set; }
5050
[BsonDefaultValue("")]
51-
public BsonString alertedState { get; set; }
51+
public BsonString alertState { get; set; }
5252
[BsonDefaultValue("")]
5353
public BsonString annotation { get; set; }
5454
[BsonDefaultValue(false)]
@@ -217,7 +217,7 @@ public static rtData newRealtimeDoc(OPC_Value iv, double _id)
217217
alarmDisabled = false,
218218
alerted = false,
219219
alarmed = false,
220-
alertedState = "",
220+
alertState = "",
221221
annotation = "",
222222
commandBlocked = false,
223223
commandOfSupervised = 0.0,
@@ -293,7 +293,7 @@ public static rtData newRealtimeDoc(OPC_Value iv, double _id)
293293
alarmDisabled = false,
294294
alerted = false,
295295
alarmed = false,
296-
alertedState = "",
296+
alertState = "",
297297
annotation = "",
298298
commandBlocked = false,
299299
commandOfSupervised = 0.0,
@@ -369,7 +369,7 @@ public static rtData newRealtimeDoc(OPC_Value iv, double _id)
369369
alarmDisabled = false,
370370
alerted = false,
371371
alarmed = false,
372-
alertedState = "",
372+
alertState = "",
373373
annotation = "",
374374
commandBlocked = false,
375375
commandOfSupervised = 0.0,
@@ -444,7 +444,7 @@ public static rtData newRealtimeDoc(OPC_Value iv, double _id)
444444
alarmDisabled = false,
445445
alerted = false,
446446
alarmed = false,
447-
alertedState = "",
447+
alertState = "",
448448
annotation = "",
449449
commandBlocked = false,
450450
commandOfSupervised = 0.0,

src/OPC-UA-Client/TagsCreation.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public class rtData
4343
[BsonDefaultValue(false)]
4444
public BsonBoolean alerted { get; set; }
4545
[BsonDefaultValue("")]
46-
public BsonString alertedState { get; set; }
46+
public BsonString alertState { get; set; }
4747
[BsonDefaultValue("")]
4848
public BsonString annotation { get; set; }
4949
[BsonDefaultValue(false)]
@@ -233,7 +233,7 @@ public static rtData newRealtimeDoc(OPC_Value ov, double _id, double commandOfSu
233233
alarmDisabled = false,
234234
alerted = false,
235235
alarmed = false,
236-
alertedState = "",
236+
alertState = "",
237237
annotation = "",
238238
commandBlocked = false,
239239
commandOfSupervised = 0.0,
@@ -308,7 +308,7 @@ public static rtData newRealtimeDoc(OPC_Value ov, double _id, double commandOfSu
308308
alarmDisabled = false,
309309
alerted = false,
310310
alarmed = false,
311-
alertedState = "",
311+
alertState = "",
312312
annotation = "",
313313
commandBlocked = false,
314314
commandOfSupervised = commandOfSupervised,
@@ -383,7 +383,7 @@ public static rtData newRealtimeDoc(OPC_Value ov, double _id, double commandOfSu
383383
alarmDisabled = false,
384384
alerted = false,
385385
alarmed = false,
386-
alertedState = "",
386+
alertState = "",
387387
annotation = "",
388388
commandBlocked = false,
389389
commandOfSupervised = commandOfSupervised,
@@ -458,7 +458,7 @@ public static rtData newRealtimeDoc(OPC_Value ov, double _id, double commandOfSu
458458
alarmDisabled = false,
459459
alerted = false,
460460
alarmed = false,
461-
alertedState = "",
461+
alertState = "",
462462
annotation = "",
463463
commandBlocked = false,
464464
commandOfSupervised = commandOfSupervised,
@@ -532,7 +532,7 @@ public static rtData newRealtimeDoc(OPC_Value ov, double _id, double commandOfSu
532532
alarmDisabled = false,
533533
alerted = false,
534534
alarmed = false,
535-
alertedState = "",
535+
alertState = "",
536536
annotation = "",
537537
commandBlocked = false,
538538
commandOfSupervised = commandOfSupervised,

0 commit comments

Comments
 (0)