Exemple #1
0
 public iBeaconEventHolder(Guid uuid, ushort?major, ushort?minor)
 {
     ibeacon = new iBeacon()
     {
         Uuid  = uuid,
         Major = major,
         Minor = minor
     };
     EventList = new List <iBeaconEventDetail>();
 }
Exemple #2
0
 public static string GenerateBeaconIdentifyStr(iBeacon ibeacon)
 {
     return(GenerateBeaconIdentifyStr(ibeacon.Uuid, ibeacon.Major, ibeacon.Minor));
 }