Пример #1
0
 public ChangeOfValue(NewValue newValue, StatusFlags statusFlags)
 {
     this.NewValue = newValue;
     this.StatusFlags = statusFlags;
 }
Пример #2
0
 public static NotificationParameters NewUnsignedRange(uint exceedingValue, StatusFlags statusFlags, uint exceededLimit)
 {
     return new UnsignedRange(exceedingValue, statusFlags, exceededLimit);
 }
Пример #3
0
 public ChangeOfLifeSafety(LifeSafetyState newState, LifeSafetyMode newMode, StatusFlags statusFlags, LifeSafetyOperation operationExpected)
 {
     this.NewState = newState;
     this.NewMode = newMode;
     this.StatusFlags = statusFlags;
     this.OperationExpected = operationExpected;
 }
Пример #4
0
 public static NotificationParameters NewChangeOfValue(NewValue newValue, StatusFlags statusFlags)
 {
     return new ChangeOfValue(newValue, statusFlags);
 }
Пример #5
0
 public static NotificationParameters NewFloatingLimit(float referenceValue, StatusFlags statusFlags, float setpointValue, float errorLimit)
 {
     return new FloatingLimit(referenceValue, statusFlags, setpointValue, errorLimit);
 }
Пример #6
0
 public UnsignedRange(uint exceedingValue, StatusFlags statusFlags, uint exceededLimit)
 {
     this.ExceedingValue = exceedingValue;
     this.StatusFlags = statusFlags;
     this.ExceededLimit = exceededLimit;
 }
Пример #7
0
 public static NotificationParameters NewChangeOfLifeSafety(LifeSafetyState newState, LifeSafetyMode newMode, StatusFlags statusFlags, LifeSafetyOperation operationExpected)
 {
     return new ChangeOfLifeSafety(newState, newMode, statusFlags, operationExpected);
 }
Пример #8
0
 public static NotificationParameters NewChangeOfValue(NewValue newValue, StatusFlags statusFlags)
 {
     return(new ChangeOfValue(newValue, statusFlags));
 }
Пример #9
0
 public static NotificationParameters NewCommandFailure(GenericValue commandValue, StatusFlags statusFlags, GenericValue feedbackValue)
 {
     return(new CommandFailure(commandValue, statusFlags, feedbackValue));
 }
Пример #10
0
 public static NotificationParameters NewChangeOfBitstring(BitString56 referencedBitstring, StatusFlags statusFlags)
 {
     return(new ChangeOfBitstring(referencedBitstring, statusFlags));
 }
Пример #11
0
 public static NotificationParameters NewChangeOfState(PropertyStates newState, StatusFlags statusFlags)
 {
     return(new ChangeOfState(newState, statusFlags));
 }
Пример #12
0
 public static NotificationParameters NewUnsignedRange(uint exceedingValue, StatusFlags statusFlags, uint exceededLimit)
 {
     return(new UnsignedRange(exceedingValue, statusFlags, exceededLimit));
 }
Пример #13
0
 public UnsignedRange(uint exceedingValue, StatusFlags statusFlags, uint exceededLimit)
 {
     this.ExceedingValue = exceedingValue;
     this.StatusFlags    = statusFlags;
     this.ExceededLimit  = exceededLimit;
 }
Пример #14
0
 public static NotificationParameters NewChangeOfLifeSafety(LifeSafetyState newState, LifeSafetyMode newMode, StatusFlags statusFlags, LifeSafetyOperation operationExpected)
 {
     return(new ChangeOfLifeSafety(newState, newMode, statusFlags, operationExpected));
 }
Пример #15
0
 public static void Save(IValueSink sink, StatusFlags value)
 {
     Value<BitString56>.Save(sink, value._bitstring);
 }
Пример #16
0
 public ChangeOfBitstring(BitString56 referencedBitstring, StatusFlags statusFlags)
 {
     this.ReferencedBitstring = referencedBitstring;
     this.StatusFlags         = statusFlags;
 }
Пример #17
0
 public OutOfRange(float exceedingValue, StatusFlags statusFlags, float deadband, float exceededLimit)
 {
     this.ExceedingValue = exceedingValue;
     this.StatusFlags = statusFlags;
     this.Deadband = deadband;
     this.ExceededLimit = exceededLimit;
 }
Пример #18
0
 public ChangeOfState(PropertyStates newState, StatusFlags statusFlags)
 {
     this.NewState    = newState;
     this.StatusFlags = statusFlags;
 }
Пример #19
0
 public static NotificationParameters NewChangeOfBitstring(BitString56 referencedBitstring, StatusFlags statusFlags)
 {
     return new ChangeOfBitstring(referencedBitstring, statusFlags);
 }
Пример #20
0
 public static NotificationParameters NewFloatingLimit(float referenceValue, StatusFlags statusFlags, float setpointValue, float errorLimit)
 {
     return(new FloatingLimit(referenceValue, statusFlags, setpointValue, errorLimit));
 }
Пример #21
0
 public static NotificationParameters NewChangeOfState(PropertyStates newState, StatusFlags statusFlags)
 {
     return new ChangeOfState(newState, statusFlags);
 }
Пример #22
0
 public ChangeOfValue(NewValue newValue, StatusFlags statusFlags)
 {
     this.NewValue    = newValue;
     this.StatusFlags = statusFlags;
 }
Пример #23
0
 public static NotificationParameters NewCommandFailure(GenericValue commandValue, StatusFlags statusFlags, GenericValue feedbackValue)
 {
     return new CommandFailure(commandValue, statusFlags, feedbackValue);
 }
Пример #24
0
 public CommandFailure(GenericValue commandValue, StatusFlags statusFlags, GenericValue feedbackValue)
 {
     this.CommandValue  = commandValue;
     this.StatusFlags   = statusFlags;
     this.FeedbackValue = feedbackValue;
 }
Пример #25
0
 public static NotificationParameters NewOutOfRange(float exceedingValue, StatusFlags statusFlags, float deadband, float exceededLimit)
 {
     return new OutOfRange(exceedingValue, statusFlags, deadband, exceededLimit);
 }
Пример #26
0
 public static NotificationParameters NewOutOfRange(float exceedingValue, StatusFlags statusFlags, float deadband, float exceededLimit)
 {
     return(new OutOfRange(exceedingValue, statusFlags, deadband, exceededLimit));
 }
Пример #27
0
 public ChangeOfBitstring(BitString56 referencedBitstring, StatusFlags statusFlags)
 {
     this.ReferencedBitstring = referencedBitstring;
     this.StatusFlags = statusFlags;
 }
Пример #28
0
 public ChangeOfLifeSafety(LifeSafetyState newState, LifeSafetyMode newMode, StatusFlags statusFlags, LifeSafetyOperation operationExpected)
 {
     this.NewState          = newState;
     this.NewMode           = newMode;
     this.StatusFlags       = statusFlags;
     this.OperationExpected = operationExpected;
 }
Пример #29
0
 public ChangeOfState(PropertyStates newState, StatusFlags statusFlags)
 {
     this.NewState = newState;
     this.StatusFlags = statusFlags;
 }
Пример #30
0
 public FloatingLimit(float referenceValue, StatusFlags statusFlags, float setpointValue, float errorLimit)
 {
     this.ReferenceValue = referenceValue;
     this.StatusFlags = statusFlags;
     this.SetpointValue = setpointValue;
     this.ErrorLimit = errorLimit;
 }
Пример #31
0
 public CommandFailure(GenericValue commandValue, StatusFlags statusFlags, GenericValue feedbackValue)
 {
     this.CommandValue = commandValue;
     this.StatusFlags = statusFlags;
     this.FeedbackValue = feedbackValue;
 }
Пример #32
0
 public static void Save(IValueSink sink, StatusFlags value)
 {
     Value <BitString56> .Save(sink, value._bitstring);
 }