SensorbergSDK.Internal.Data.Layout.ContainsOtherThanSensorbergBeaconId1S C# (CSharp) 메소드

ContainsOtherThanSensorbergBeaconId1S() 공개 메소드

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

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

            return containsOtherThanSensorbergBeaconId1S;
        }