SensorbergSDK.Internal.Data.Layout.ContainsOtherThanSensorbergBeaconId1S C# (CSharp) Method

ContainsOtherThanSensorbergBeaconId1S() public method

Checks if the beacon ID1s in this layout contain other than those of Sensorberg beacons.
public ContainsOtherThanSensorbergBeaconId1S ( ) : bool
return bool
        public bool ContainsOtherThanSensorbergBeaconId1S()
        {
            bool containsOtherThanSensorbergBeaconId1S = false;

            foreach (string beaconId1 in AccountBeaconId1S)
            {
                if (!beaconId1.StartsWith(Constants.SensorbergUuidSpace, StringComparison.CurrentCultureIgnoreCase))
                {
                     containsOtherThanSensorbergBeaconId1S = true;
                }
            }

            return containsOtherThanSensorbergBeaconId1S;
        }