コード例 #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;
 }
コード例 #2
0
 public PropertyValueException(BACnetError error)
 {
     this.Error = error;
 }
コード例 #3
0
 public WritePropertyMultipleError(byte choice, BACnetError error, ObjectPropertyReference firstFailedWriteAttempt) : base(choice, error)
 {
     this.firstFailedWriteAttempt = firstFailedWriteAttempt;
 }
コード例 #4
0
 public CreateObjectError(byte choice, BACnetError error, UnsignedInteger firstFailedElementNumber) : base(choice, error)
 {
     this.firstFailedElementNumber = firstFailedElementNumber;
 }
コード例 #5
0
ファイル: BaseError.cs プロジェクト: MatyRi/BACnetNetduino
 public BaseError(byte choice, BACnetError error)
 {
     this.choice = choice;
     this.Error  = error;
 }
コード例 #6
0
        private readonly SequenceOf listOfVTSessionIdentifiers; // UnsignedInteger

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