BACnet.Types.OctetStringValue.OctetStringValue C# (CSharp) Method

OctetStringValue() public method

Constructs a new OctetStringValue instance
public OctetStringValue ( ReadOnlyArray value ) : System
value ReadOnlyArray The wrapped octet string value
return System
        public OctetStringValue(ReadOnlyArray<byte> value)
        {
            this.Value = value;
        }

Same methods

OctetStringValue::OctetStringValue ( byte value, bool clone = true ) : System
OctetStringValue