Inheritance: Plugin.BLE.Abstractions.BleImplementationBase
Example #1
0
        static IBluetoothLE CreateImplementation()
        {
#if PORTABLE
            return(null);
#else
            var implementation = new BleImplementation();
            implementation.Initialize();
            return(implementation);
#endif
        }
        static IBluetoothLE CreateImplementation()
        {
#if PORTABLE
            return null;
#else
            var implementation = new BleImplementation();
            implementation.Initialize();
            return implementation;
#endif
        }