BACnet.Ashrae.DeviceObjectPropertyReference.ToString C# (CSharp) Method

ToString() public method

Returns a string representation of the object
public ToString ( ) : string
return string
        public override string ToString()
        {
            return
                DeviceIdentifier.ToString() +
                (DeviceIdentifier.HasValue ? "." : string.Empty) +
                (ObjectType)ObjectIdentifier.Type +
                ObjectIdentifier.Instance +
                "." +
                PropertyIdentifier +
                (PropertyArrayIndex.HasValue ? "[" : string.Empty) +
                PropertyArrayIndex.ToString() +
                (PropertyArrayIndex.HasValue ? "]" : string.Empty);
        }