From 23c11ca1ad8b271c73e002dd7ca820bca97da3a2 Mon Sep 17 00:00:00 2001 From: DotnetBuild Date: Wed, 13 Sep 2017 09:10:55 +0900 Subject: [PATCH] Release 4.0.0-preview1-00195 --- packaging/csapi-tizenfx.spec | 2 +- .../Interop/Interop.Eext.Rotary.cs | 1 + .../Tizen.Network.Bluetooth/BluetoothAdapter.cs | 150 ++++++++++++++++++--- .../BluetoothAdapterImpl.cs | 1 - 4 files changed, 136 insertions(+), 18 deletions(-) diff --git a/packaging/csapi-tizenfx.spec b/packaging/csapi-tizenfx.spec index d5c9e9b..5271ff5 100644 --- a/packaging/csapi-tizenfx.spec +++ b/packaging/csapi-tizenfx.spec @@ -10,7 +10,7 @@ Name: csapi-tizenfx Summary: Assemblies of Tizen .NET -Version: 4.0.0.194 +Version: 4.0.0.195 Release: 1 Group: Development/Libraries License: Apache-2.0 diff --git a/src/ElmSharp.Wearable/Interop/Interop.Eext.Rotary.cs b/src/ElmSharp.Wearable/Interop/Interop.Eext.Rotary.cs index 619077d..aa004b1 100644 --- a/src/ElmSharp.Wearable/Interop/Interop.Eext.Rotary.cs +++ b/src/ElmSharp.Wearable/Interop/Interop.Eext.Rotary.cs @@ -34,6 +34,7 @@ internal static partial class Interop CounterClockwise } + [StructLayout(LayoutKind.Sequential)] internal struct Eext_Rotary_Event_Info { public Eext_Rotary_Event_Direction Direction; diff --git a/src/Tizen.Network.Bluetooth/Tizen.Network.Bluetooth/BluetoothAdapter.cs b/src/Tizen.Network.Bluetooth/Tizen.Network.Bluetooth/BluetoothAdapter.cs index ee9aca5..756944a 100644 --- a/src/Tizen.Network.Bluetooth/Tizen.Network.Bluetooth/BluetoothAdapter.cs +++ b/src/Tizen.Network.Bluetooth/Tizen.Network.Bluetooth/BluetoothAdapter.cs @@ -35,7 +35,14 @@ namespace Tizen.Network.Bluetooth { get { - return BluetoothAdapterImpl.Instance.IsBluetoothEnabled; + try + { + return BluetoothAdapterImpl.Instance.IsBluetoothEnabled; + } + catch (TypeInitializationException e) + { + throw e.InnerException; + } } } @@ -85,7 +92,14 @@ namespace Tizen.Network.Bluetooth } set { - BluetoothAdapterImpl.Instance.Name = value; + try + { + BluetoothAdapterImpl.Instance.Name = value; + } + catch (TypeInitializationException e) + { + throw e.InnerException; + } } } @@ -161,89 +175,186 @@ namespace Tizen.Network.Bluetooth /// /// The StateChanged event is raised when the Bluetooth adapter state is changed. /// + /// Thrown when the Bluetooth is not supported. + /// Thrown when the Bluetooth is not enabled. static public event EventHandler StateChanged { add { - BluetoothAdapterImpl.Instance.StateChanged += value; + try + { + BluetoothAdapterImpl.Instance.StateChanged += value; + } + catch (TypeInitializationException e) + { + throw e.InnerException; + } } remove { - BluetoothAdapterImpl.Instance.StateChanged -= value; + try + { + BluetoothAdapterImpl.Instance.StateChanged -= value; + } + catch (TypeInitializationException e) + { + throw e.InnerException; + } } } /// /// The NameChanged event is raised when the Bluetooth adapter name is changed. /// + /// Thrown when the Bluetooth is not supported. + /// Thrown when the Bluetooth is not enabled. static public event EventHandler NameChanged { add { - BluetoothAdapterImpl.Instance.NameChanged += value; + try + { + BluetoothAdapterImpl.Instance.NameChanged += value; + } + catch (TypeInitializationException e) + { + throw e.InnerException; + } } remove { - BluetoothAdapterImpl.Instance.NameChanged -= value; + try + { + BluetoothAdapterImpl.Instance.NameChanged -= value; + } + catch (TypeInitializationException e) + { + throw e.InnerException; + } } } /// /// The VisibilityModeChanged event is raised when the Bluetooth adapter visibility mode is changed. /// + /// Thrown when the Bluetooth is not supported. + /// Thrown when the Bluetooth is not enabled. static public event EventHandler VisibilityModeChanged { add { - BluetoothAdapterImpl.Instance.VisibilityModeChanged += value; + try + { + BluetoothAdapterImpl.Instance.VisibilityModeChanged += value; + } + catch (TypeInitializationException e) + { + throw e.InnerException; + } } remove { - BluetoothAdapterImpl.Instance.VisibilityModeChanged -= value; + try + { + BluetoothAdapterImpl.Instance.VisibilityModeChanged -= value; + } + catch (TypeInitializationException e) + { + throw e.InnerException; + } } } /// /// The VisibilityDurationChanged event is raised very second until the visibility mode is changed to NonDiscoverable. /// + /// Thrown when the Bluetooth is not supported. + /// Thrown when the Bluetooth is not enabled. static public event EventHandler VisibilityDurationChanged { add { - BluetoothAdapterImpl.Instance.VisibilityDurationChanged += value; + try + { + BluetoothAdapterImpl.Instance.VisibilityDurationChanged += value; + } + catch (TypeInitializationException e) + { + throw e.InnerException; + } } remove { - BluetoothAdapterImpl.Instance.VisibilityDurationChanged -= value; + try + { + BluetoothAdapterImpl.Instance.VisibilityDurationChanged -= value; + } + catch (TypeInitializationException e) + { + throw e.InnerException; + } } } /// /// The DiscoveryStateChanged event is raised when the device discovery state is changed. /// + /// Thrown when the Bluetooth is not supported. + /// Thrown when the Bluetooth is not enabled. static public event EventHandler DiscoveryStateChanged { add { - BluetoothAdapterImpl.Instance.DiscoveryStateChanged += value; + try + { + BluetoothAdapterImpl.Instance.DiscoveryStateChanged += value; + } + catch (TypeInitializationException e) + { + throw e.InnerException; + } } remove { - BluetoothAdapterImpl.Instance.DiscoveryStateChanged -= value; + try + { + BluetoothAdapterImpl.Instance.DiscoveryStateChanged -= value; + } + catch (TypeInitializationException e) + { + throw e.InnerException; + } } } /// /// This event is called when the LE scan result is obtained. /// + /// Thrown when the Bluetooth is not supported. + /// Thrown when the Bluetooth is not enabled. static public event EventHandler ScanResultChanged { add { - BluetoothLeImplAdapter.Instance.AdapterLeScanResultChanged += value; + try + { + BluetoothLeImplAdapter.Instance.AdapterLeScanResultChanged += value; + } + catch (TypeInitializationException e) + { + throw e.InnerException; + } } - remove { - BluetoothLeImplAdapter.Instance.AdapterLeScanResultChanged -= value; + remove + { + try + { + BluetoothLeImplAdapter.Instance.AdapterLeScanResultChanged -= value; + } + catch (TypeInitializationException e) + { + throw e.InnerException; + } } } @@ -336,7 +447,14 @@ namespace Tizen.Network.Bluetooth /// Thrown when the Bluetooth is not enabled. static public bool IsServiceUsed(string serviceUuid) { - return BluetoothAdapterImpl.Instance.IsServiceUsed(serviceUuid); + try + { + return BluetoothAdapterImpl.Instance.IsServiceUsed(serviceUuid); + } + catch (TypeInitializationException e) + { + throw e.InnerException; + } } /// diff --git a/src/Tizen.Network.Bluetooth/Tizen.Network.Bluetooth/BluetoothAdapterImpl.cs b/src/Tizen.Network.Bluetooth/Tizen.Network.Bluetooth/BluetoothAdapterImpl.cs index 444c461..14e2981 100644 --- a/src/Tizen.Network.Bluetooth/Tizen.Network.Bluetooth/BluetoothAdapterImpl.cs +++ b/src/Tizen.Network.Bluetooth/Tizen.Network.Bluetooth/BluetoothAdapterImpl.cs @@ -598,7 +598,6 @@ namespace Tizen.Network.Bluetooth if (ret != (int)BluetoothError.None) { Log.Error (Globals.LogTag, "Failed to deinitialize bluetooth, Error - " + (BluetoothError)ret); - BluetoothErrorFactory.ThrowBluetoothException (ret); } else { -- 2.7.4