Exemplo n.º 1
0
 public ConfirmedPrivateTransferError(byte choice, BACnetError error, UnsignedInteger vendorId,
                                      UnsignedInteger serviceNumber, BaseType errorParameters) : base(choice, error)
 {
     this.vendorId        = vendorId;
     this.serviceNumber   = serviceNumber;
     this.errorParameters = errorParameters;
 }
Exemplo n.º 2
0
 public PropertyValueException(BACnetError error)
 {
     this.Error = error;
 }
Exemplo n.º 3
0
 public WritePropertyMultipleError(byte choice, BACnetError error, ObjectPropertyReference firstFailedWriteAttempt) : base(choice, error)
 {
     this.firstFailedWriteAttempt = firstFailedWriteAttempt;
 }
Exemplo n.º 4
0
 public CreateObjectError(byte choice, BACnetError error, UnsignedInteger firstFailedElementNumber) : base(choice, error)
 {
     this.firstFailedElementNumber = firstFailedElementNumber;
 }
Exemplo n.º 5
0
 public BaseError(byte choice, BACnetError error)
 {
     this.choice = choice;
     this.Error  = error;
 }
Exemplo n.º 6
0
        private readonly SequenceOf listOfVTSessionIdentifiers; // UnsignedInteger

        public VTCloseError(byte choice, BACnetError error, SequenceOf listOfVTSessionIdentifiers) : base(choice, error)
        {
            this.listOfVTSessionIdentifiers = listOfVTSessionIdentifiers;
        }