BACnet.Ashrae.IAmRequest.IAmRequest C# (CSharp) Method

IAmRequest() public method

public IAmRequest ( ObjectId iAmDeviceIdentifier, uint maxAPDULengthAccepted, Segmentation segmentationSupported, uint vendorID ) : System
iAmDeviceIdentifier ObjectId
maxAPDULengthAccepted uint
segmentationSupported Segmentation
vendorID uint
return System
        public IAmRequest(ObjectId iAmDeviceIdentifier, uint maxAPDULengthAccepted, Segmentation segmentationSupported, uint vendorID)
        {
            this.IAmDeviceIdentifier = iAmDeviceIdentifier;
            this.MaxAPDULengthAccepted = maxAPDULengthAccepted;
            this.SegmentationSupported = segmentationSupported;
            this.VendorID = vendorID;
        }