From: DotnetBuild Date: Mon, 18 Sep 2017 00:05:50 +0000 (+0900) Subject: Release 4.0.0-preview1-00213 X-Git-Tag: accepted/tizen/unified/20170918.093943^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=44890fef06dbfc4354dc906f08211661d17e76de;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git Release 4.0.0-preview1-00213 --- diff --git a/packaging/csapi-tizenfx.spec b/packaging/csapi-tizenfx.spec index 8294d55..249eb7e 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.207 +Version: 4.0.0.213 Release: 1 Group: Development/Libraries License: Apache-2.0 diff --git a/src/ElmSharp/ElmSharp/Elementary.cs b/src/ElmSharp/ElmSharp/Elementary.cs old mode 100644 new mode 100755 index 7984f83..bd90845 --- a/src/ElmSharp/ElmSharp/Elementary.cs +++ b/src/ElmSharp/ElmSharp/Elementary.cs @@ -320,9 +320,7 @@ namespace ElmSharp return Interop.Elementary.elm_policy_set(policy, value); } - /// - /// Reloads Elementary's configuration, bounded to the current selected profile. - /// + [EditorBrowsable(EditorBrowsableState.Never)] public static void ReloadConfig() { Interop.Elementary.elm_config_reload(); diff --git a/src/Tizen.Applications.Shortcut/Tizen.Applications.Shortcut/ShortcutManager.cs b/src/Tizen.Applications.Shortcut/Tizen.Applications.Shortcut/ShortcutManager.cs index f27507d..3b4e7c4 100755 --- a/src/Tizen.Applications.Shortcut/Tizen.Applications.Shortcut/ShortcutManager.cs +++ b/src/Tizen.Applications.Shortcut/Tizen.Applications.Shortcut/ShortcutManager.cs @@ -51,7 +51,7 @@ namespace Tizen.Applications.Shortcut { int type; - if (shortcut.Uri == null || shortcut.Uri == String.Empty) + if (string.IsNullOrEmpty(shortcut.Uri)) { type = 0; } diff --git a/src/Tizen.Applications.Shortcut/Tizen.Applications.ShortcutEvent/ShortcutEventManager.cs b/src/Tizen.Applications.Shortcut/Tizen.Applications.ShortcutEvent/ShortcutEventManager.cs index fba8ab1..fca6ef2 100755 --- a/src/Tizen.Applications.Shortcut/Tizen.Applications.ShortcutEvent/ShortcutEventManager.cs +++ b/src/Tizen.Applications.Shortcut/Tizen.Applications.ShortcutEvent/ShortcutEventManager.cs @@ -66,8 +66,6 @@ namespace Tizen.Applications.Shortcut /// Thrown in case of any internal error. public static void RegisterEventHandler(ShortcutAdded addedEvent) { - shortcutAdded = addedEvent; - if (shortcutAddCallback == null) { shortcutAddCallback = new Interop.Shortcut.AddCallback(AddCallback); @@ -75,8 +73,15 @@ namespace Tizen.Applications.Shortcut Interop.Shortcut.ErrorCode err = Interop.Shortcut.SetShortcutAddCallback(shortcutAddCallback, IntPtr.Zero); if (err != Interop.Shortcut.ErrorCode.None) { + shortcutAddCallback = null; throw ShortcutErrorFactory.GetException(err, "unable to register callback"); } + + shortcutAdded = addedEvent; + } + else + { + throw ShortcutErrorFactory.GetException(Interop.Shortcut.ErrorCode.InvalidParameter, null); } } @@ -97,8 +102,6 @@ namespace Tizen.Applications.Shortcut /// Thrown in case of any internal error. public static void RegisterEventHandler(ShortcutDeleted deletedEvent) { - shortcutDeleted = deletedEvent; - if (shortcutDeleteCallback == null) { shortcutDeleteCallback = new Interop.Shortcut.DeleteCallback(DeleteCallback); @@ -106,8 +109,15 @@ namespace Tizen.Applications.Shortcut Interop.Shortcut.ErrorCode err = Interop.Shortcut.SetShortcutDeleteCallback(shortcutDeleteCallback, IntPtr.Zero); if (err != Interop.Shortcut.ErrorCode.None) { + shortcutDeleteCallback = null; throw ShortcutErrorFactory.GetException(err, "unable to register callback"); } + + shortcutDeleted = deletedEvent; + } + else + { + throw ShortcutErrorFactory.GetException(Interop.Shortcut.ErrorCode.InvalidParameter, null); } } @@ -123,7 +133,7 @@ namespace Tizen.Applications.Shortcut /// Thrown when Shortcut is not supported. public static void UnregisterEventHandler(ShortcutAdded addedEvent) { - if (shortcutAdded.Equals(addedEvent)) + if (shortcutAdded != null && shortcutAdded.Equals(addedEvent)) { shortcutAdded = null; @@ -157,13 +167,12 @@ namespace Tizen.Applications.Shortcut /// Thrown when Shortcut is not supported. public static void UnregisterEventHandler(ShortcutDeleted deletedEvent) { - if (shortcutDeleted.Equals(deletedEvent)) + if (shortcutDeleted != null && shortcutDeleted.Equals(deletedEvent)) { shortcutDeleted = null; if (shortcutDeleteCallback != null) { - Interop.Shortcut.UnsetShortcutDeleteCallback(); shortcutDeleteCallback = null; diff --git a/src/Tizen.Location.Geofence/Tizen.Location.Geofence/Fence.cs b/src/Tizen.Location.Geofence/Tizen.Location.Geofence/Fence.cs index 7dbe95b..5443cf2 100755 --- a/src/Tizen.Location.Geofence/Tizen.Location.Geofence/Fence.cs +++ b/src/Tizen.Location.Geofence/Tizen.Location.Geofence/Fence.cs @@ -207,7 +207,7 @@ namespace Tizen.Location.Geofence /// /// Creates a geopoint type of the new geofence. /// - /// 3 + /// 4 /// The current place ID. /// Specifies the value of latitude of the geofence [-90.0 ~ 90.0] (degrees). /// Specifies the value of longitude of the geofence [-180.0 ~ 180.0] (degrees). @@ -217,7 +217,7 @@ namespace Tizen.Location.Geofence /// In case of an invalid parameter. /// In case of any system error. /// In case the geofence is not supported. - public static Fence CreateGPSFence(int placeId, int latitude, int longitude, int radius, string address) + public static Fence CreateGPSFence(int placeId, double latitude, double longitude, int radius, string address) { IntPtr handle = IntPtr.Zero; GeofenceError ret = (GeofenceError)Interop.Geofence.CreateGPSFence(placeId, latitude, longitude, radius,address, out handle); @@ -285,7 +285,7 @@ namespace Tizen.Location.Geofence GC.SuppressFinalize(this); } - private void Dispose(bool disposing) + protected virtual void Dispose(bool disposing) { if (_disposed) return; diff --git a/src/Tizen.Location.Geofence/Tizen.Location.Geofence/FenceStatus.cs b/src/Tizen.Location.Geofence/Tizen.Location.Geofence/FenceStatus.cs index c430ca1..fdd0071 100644 --- a/src/Tizen.Location.Geofence/Tizen.Location.Geofence/FenceStatus.cs +++ b/src/Tizen.Location.Geofence/Tizen.Location.Geofence/FenceStatus.cs @@ -40,6 +40,7 @@ namespace Tizen.Location.Geofence /// Creates a new geofence status. /// /// 3 + /// The geofence ID. /// In case of an invalid parameter. /// In case of geofence is not supported. public FenceStatus(int fenceId) @@ -109,7 +110,7 @@ namespace Tizen.Location.Geofence GC.SuppressFinalize(this); } - private void Dispose(bool disposing) + protected virtual void Dispose(bool disposing) { if (_disposed) return; diff --git a/src/Tizen.Location.Geofence/Tizen.Location.Geofence/GeofenceManager.cs b/src/Tizen.Location.Geofence/Tizen.Location.Geofence/GeofenceManager.cs index 20750f7..315c6cb 100755 --- a/src/Tizen.Location.Geofence/Tizen.Location.Geofence/GeofenceManager.cs +++ b/src/Tizen.Location.Geofence/Tizen.Location.Geofence/GeofenceManager.cs @@ -281,7 +281,7 @@ namespace Tizen.Location.Geofence GC.SuppressFinalize(this); } - private void Dispose(bool disposing) + protected virtual void Dispose(bool disposing) { if (_disposed) return; diff --git a/src/Tizen.Messaging.Push/Tizen.Messaging.Push/PushImpl.cs b/src/Tizen.Messaging.Push/Tizen.Messaging.Push/PushImpl.cs index 2c49734..c569405 100644 --- a/src/Tizen.Messaging.Push/Tizen.Messaging.Push/PushImpl.cs +++ b/src/Tizen.Messaging.Push/Tizen.Messaging.Push/PushImpl.cs @@ -26,6 +26,8 @@ namespace Tizen.Messaging.Push { private static readonly object _lock = new object(); private static PushImpl _instance; + private Interop.PushClient.VoidResultCallback registerResult; + private Interop.PushClient.VoidResultCallback unregisterResult; internal static PushImpl Instance { @@ -157,9 +159,9 @@ namespace Tizen.Messaging.Push { Log.Info(Interop.PushClient.LogTag, "Register Called"); var task = new TaskCompletionSource(); - Interop.PushClient.VoidResultCallback registerResult = (Interop.PushClient.Result regResult, IntPtr msgPtr, IntPtr userData) => + registerResult = (Interop.PushClient.Result regResult, IntPtr msgPtr, IntPtr userData) => { - Log.Info(Interop.PushClient.LogTag, "Register Callback Called"); + Log.Info(Interop.PushClient.LogTag, "Register Callback Called with " + regResult); string msg = ""; if (msgPtr != IntPtr.Zero) { @@ -186,7 +188,7 @@ namespace Tizen.Messaging.Push internal async Task PushServerUnregister() { var task = new TaskCompletionSource(); - Interop.PushClient.VoidResultCallback registerResult = (Interop.PushClient.Result regResult, IntPtr msgPtr, IntPtr userData) => + unregisterResult = (Interop.PushClient.Result regResult, IntPtr msgPtr, IntPtr userData) => { Log.Info(Interop.PushClient.LogTag, "Unregister Callback Called"); string msg = ""; @@ -202,7 +204,7 @@ namespace Tizen.Messaging.Push Log.Error(Interop.PushClient.LogTag, "Unable to set the Result for Unregister"); } }; - Interop.PushClient.ServiceError result = Interop.PushClient.ServiceDeregister(_connection, registerResult, IntPtr.Zero); + Interop.PushClient.ServiceError result = Interop.PushClient.ServiceDeregister(_connection, unregisterResult, IntPtr.Zero); if (result != Interop.PushClient.ServiceError.None) { task.SetException(PushExceptionFactory.CreateResponseException(result)); diff --git a/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/IoTConnectivityClientManager.cs b/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/IoTConnectivityClientManager.cs index 3d042e0..7a8e7ed 100755 --- a/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/IoTConnectivityClientManager.cs +++ b/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/IoTConnectivityClientManager.cs @@ -206,8 +206,7 @@ namespace Tizen.Network.IoTConnectivity ///
         /// Initialize() should be called to initialize.
         /// 
- /// - /// + /// /// /// IoTConnectivityClientManager.Deinitialize(); /// diff --git a/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/IoTConnectivityServerManager.cs b/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/IoTConnectivityServerManager.cs index 1a89430..34946c9 100755 --- a/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/IoTConnectivityServerManager.cs +++ b/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/IoTConnectivityServerManager.cs @@ -76,7 +76,7 @@ namespace Tizen.Network.IoTConnectivity ///
         /// Initialize() should be called to initialize.
         /// 
- /// + /// /// /// IoTConnectivityServerManager.Deinitialize(); /// @@ -222,8 +222,8 @@ namespace Tizen.Network.IoTConnectivity ///
         /// Initialize() should be called to initialize.
         /// 
- /// - /// + /// + /// /// /// /// Thrown when the iotcon is not supported. @@ -262,10 +262,10 @@ namespace Tizen.Network.IoTConnectivity ///
         /// Initialize() should be called to initialize.
         /// 
- /// - /// + /// + /// /// - /// + /// /// Thrown when the iotcon is not supported. /// Thrown when the operation is invalid. /// Thrown when an application does not have privilege to access. @@ -288,12 +288,12 @@ namespace Tizen.Network.IoTConnectivity /// 3 /// /// This API sets the name of the local device (the device calling the API).\n - /// If the device name is set, clients can get the name using . + /// If the device name is set, clients can get the name using . /// /// The device name. /// http://tizen.org/feature/iot.ocf /// - /// + /// /// /// Thrown when the iotcon is not supported. /// Thrown when the operation is invalid. diff --git a/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/ResourceFoundEventArgs.cs b/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/ResourceFoundEventArgs.cs index 6673d7f..5ed0fb0 100755 --- a/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/ResourceFoundEventArgs.cs +++ b/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/ResourceFoundEventArgs.cs @@ -29,7 +29,7 @@ namespace Tizen.Network.IoTConnectivity /// /// Indicates the request ID. - /// This is the same request ID returned by the API. + /// This is the same request ID returned by the API. /// /// 3 /// The request ID. @@ -43,12 +43,12 @@ namespace Tizen.Network.IoTConnectivity public bool EventContinue { get; set; } /// - /// Remote resource, which is found after . + /// Remote resource, which is found after . /// /// 3 - /// Remote resource which is found after . + /// Remote resource which is found after . /// - /// + /// public RemoteResource Resource { get; internal set; } } } diff --git a/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/ResourceInterfaces.cs b/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/ResourceInterfaces.cs index fbdf220..49a928b 100755 --- a/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/ResourceInterfaces.cs +++ b/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/ResourceInterfaces.cs @@ -69,8 +69,8 @@ namespace Tizen.Network.IoTConnectivity /// /// 3 /// http://tizen.org/feature/iot.ocf - /// - /// + /// + /// /// Thrown when the iotcon is not supported. /// Thrown when there is not enough memory. /// @@ -179,7 +179,7 @@ namespace Tizen.Network.IoTConnectivity /// /// The string data to insert into the resource interfaces. /// http://tizen.org/feature/iot.ocf - /// + /// /// Thrown when the iotcon is not supported. /// Thrown when the operation is invalid. /// Thrown when there is an invalid parameter. diff --git a/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/ResourceOptions.cs b/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/ResourceOptions.cs index d54001e..736291e 100755 --- a/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/ResourceOptions.cs +++ b/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/ResourceOptions.cs @@ -44,8 +44,8 @@ namespace Tizen.Network.IoTConnectivity /// /// 3 /// http://tizen.org/feature/iot.ocf - /// - /// + /// + /// /// Thrown when the iotcon is not supported. /// Thrown when there is not enough memory. /// @@ -224,7 +224,7 @@ namespace Tizen.Network.IoTConnectivity /// The ID of the option to insert. /// The string data to insert into the options. /// http://tizen.org/feature/iot.ocf - /// + /// /// Thrown when the iotcon is not supported. /// Thrown when there is an invalid parameter. /// @@ -258,7 +258,7 @@ namespace Tizen.Network.IoTConnectivity /// The ID of the option to delete. /// True if operation is successful. Otherwise, false. /// http://tizen.org/feature/iot.ocf - /// + /// /// Thrown when the iotcon is not supported. /// Thrown when there is an invalid parameter. /// diff --git a/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/ResourceQuery.cs b/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/ResourceQuery.cs index 4583dc5..7622ee0 100755 --- a/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/ResourceQuery.cs +++ b/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/ResourceQuery.cs @@ -38,8 +38,8 @@ namespace Tizen.Network.IoTConnectivity /// /// 3 /// http://tizen.org/feature/iot.ocf - /// - /// + /// + /// /// Thrown when the iotcon is not supported. /// Thrown when there is not enough memory. /// @@ -298,7 +298,7 @@ namespace Tizen.Network.IoTConnectivity /// The key of the query to insert. /// The string data to insert into the query. /// http://tizen.org/feature/iot.ocf - /// + /// /// Thrown when the iotcon is not supported. /// Thrown when there is an invalid parameter. /// Thrown when the operation is invalid. @@ -332,7 +332,7 @@ namespace Tizen.Network.IoTConnectivity /// The ID of the query to delete. /// True if operation is successful. Otherwise, false. /// http://tizen.org/feature/iot.ocf - /// + /// /// Thrown when the iotcon is not supported. /// Thrown when there is an invalid parameter. /// Thrown when the operation is invalid. diff --git a/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/ResourceTypes.cs b/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/ResourceTypes.cs index b2c82a7..8f91afb 100755 --- a/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/ResourceTypes.cs +++ b/src/Tizen.Network.IoTConnectivity/Tizen.Network.IoTConnectivity/ResourceTypes.cs @@ -39,8 +39,8 @@ namespace Tizen.Network.IoTConnectivity /// /// 3 /// http://tizen.org/feature/iot.ocf - /// - /// + /// + /// /// Thrown when the iotcon is not supported. /// Thrown when there is not enough memory. /// @@ -141,7 +141,7 @@ namespace Tizen.Network.IoTConnectivity /// /// The string data to insert into the resource types. /// http://tizen.org/feature/iot.ocf - /// + /// /// Thrown when the iotcon is not supported. /// Thrown when there is an invalid parameter. /// Thrown when the operation is invalid. diff --git a/src/Tizen.System.SystemSettings/Tizen.System.SystemSettings/SystemSettings.cs b/src/Tizen.System.SystemSettings/Tizen.System.SystemSettings/SystemSettings.cs index 6fb1b8e..2af7223 100755 --- a/src/Tizen.System.SystemSettings/Tizen.System.SystemSettings/SystemSettings.cs +++ b/src/Tizen.System.SystemSettings/Tizen.System.SystemSettings/SystemSettings.cs @@ -764,8 +764,6 @@ namespace Tizen.System /// /// The IncomingCallRingtoneChanged event is triggered when the file path of the incoming ringtone is changed. /// - /// - /// The IncomingCallRingtoneChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler IncomingCallRingtoneChanged @@ -807,8 +805,6 @@ namespace Tizen.System /// /// THe WallpaperHomeScreenChanged event is triggered when the file path of the current home screen wallpaper is changed. /// - /// - /// The WallpaperHomeScreenChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler WallpaperHomeScreenChanged @@ -850,8 +846,6 @@ namespace Tizen.System /// /// The WallpaperLockScreenChanged event is triggered when the file path of the current lock screen wallpaper is changed. /// - /// - /// The WallpaperLockScreenChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler WallpaperLockScreenChanged @@ -893,8 +887,6 @@ namespace Tizen.System /// /// The FontSizeChanged event is triggered when the current system font size is changed. /// - /// - /// The FontSizeChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler FontSizeChanged @@ -936,8 +928,6 @@ namespace Tizen.System /// /// The FontTypeChanged event is triggered when the current system font type is changed. /// - /// - /// The FontTypeChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler FontTypeChanged @@ -979,8 +969,6 @@ namespace Tizen.System /// /// The MotionActivationChanged event is triggered when the motion service status is changed. /// - /// - /// The MotionActivationChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler MotionActivationSettingChanged @@ -1022,8 +1010,6 @@ namespace Tizen.System /// /// The EmailAlertRingtoneChanged event is triggered when the file path of the current email alert ringtone is changed. /// - /// - /// The EmailAlertRingtoneChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler EmailAlertRingtoneChanged @@ -1065,8 +1051,6 @@ namespace Tizen.System /// /// The UsbDebuggingSettingChangedEventArgs event is triggered when the USB debugging status is changed. /// - /// - /// The UsbDebuggingSettingChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler UsbDebuggingSettingChanged @@ -1108,8 +1092,6 @@ namespace Tizen.System /// /// The Data3GNetworkSettingChanged event is triggered when the 3G data network status is changed. /// - /// - /// The Data3GNetworkSettingChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler Data3GNetworkSettingChanged @@ -1151,8 +1133,6 @@ namespace Tizen.System /// /// The LockscreenAppChanged event is triggered when the lockscreen application package name is changed. /// - /// - /// The LockscreenAppChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler LockscreenAppChanged @@ -1194,8 +1174,6 @@ namespace Tizen.System /// /// The LocaleCountryChanged event is triggered when the current country setting in the <LANGUAGE>_<REGION> syntax, is changed. /// - /// - /// The LocaleCountryChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler LocaleCountryChanged @@ -1237,8 +1215,6 @@ namespace Tizen.System /// /// The LocaleLanguageChanged event is triggered when the current language setting in the <LANGUAGE>_<REGION> syntax, is changed. /// - /// - /// The LocaleLanguageChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler LocaleLanguageChanged @@ -1280,8 +1256,6 @@ namespace Tizen.System /// /// The LocaleTimeFormat24HourChanged event is triggered when the time format is changed. /// - /// - /// The LocaleTimeFormat24HourChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler LocaleTimeFormat24HourSettingChanged @@ -1323,8 +1297,6 @@ namespace Tizen.System /// /// The LocaleTimeZoneChanged event is triggered when the current time zone is changed. /// - /// - /// The LocaleTimeZoneChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler LocaleTimeZoneChanged @@ -1367,8 +1339,6 @@ namespace Tizen.System /// /// The TimeChanged event is triggered when the system time is changed. /// - /// - /// The TimeChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler TimeChanged @@ -1410,8 +1380,6 @@ namespace Tizen.System /// /// The SoundLockChanged event is triggered when the screen lock sound enabled status is changed. /// - /// - /// The SoundLockChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler SoundLockSettingChanged @@ -1453,8 +1421,6 @@ namespace Tizen.System /// /// The SoundSilentModeChanged event is triggered when the silent mode status is changed. /// - /// - /// The SoundSilentModeChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler SoundSilentModeSettingChanged @@ -1496,8 +1462,6 @@ namespace Tizen.System /// /// THe SoundTouchChanged event is triggered when the screen touch sound enabled status is changed. /// - /// - /// The SoundTouchChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler SoundTouchSettingChanged @@ -1539,8 +1503,6 @@ namespace Tizen.System /// /// The DisplayScreenRotationAutoChanged event is triggered when the automatic rotation control status is changed. /// - /// - /// The DisplayScreenRotationAutoChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler DisplayScreenRotationAutoSettingChanged @@ -1582,8 +1544,6 @@ namespace Tizen.System /// /// The DeviceNameChanged event is triggered when the device name is changed. /// - /// - /// The DeviceNameChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler DeviceNameChanged @@ -1625,8 +1585,6 @@ namespace Tizen.System /// /// The MotionSettingChanged event is triggered when the motion feature enabled status is changed. /// - /// - /// The MotionSettingChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler MotionSettingChanged @@ -1668,8 +1626,6 @@ namespace Tizen.System /// /// The NetworkWifiNotificationChanged event is triggered when the WiFi-related notifications enabled status is changed. /// - /// - /// The NetworkWifiNotificationChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler NetworkWifiNotificationSettingChanged @@ -1711,8 +1667,6 @@ namespace Tizen.System /// /// The NetworkFlightModeChanged event is triggered when the flight mode status is changed. /// - /// - /// The NetworkFlightModeChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler NetworkFlightModeSettingChanged @@ -1754,8 +1708,6 @@ namespace Tizen.System /// /// THe ScreenBacklightTimeChanged event is triggered when the backlight time is changed. /// - /// - /// The ScreenBacklightTimeChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler ScreenBacklightTimeChanged @@ -1797,8 +1749,6 @@ namespace Tizen.System /// /// The SoundNotificationChanged event is triggered when the file path of the current notification tone set by the user is changed. /// - /// - /// The SoundNotificationChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler SoundNotificationChanged @@ -1840,8 +1790,6 @@ namespace Tizen.System /// /// The SoundNotificationRepetitionPeriodChanged event is triggered when the time period for notification repetitions is changed. /// - /// - /// The SoundNotificationRepetitionPeriodChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler SoundNotificationRepetitionPeriodChanged @@ -1883,8 +1831,6 @@ namespace Tizen.System /// /// The LockStateChanged event is triggered when the current lock state is changed. /// - /// - /// The LockStateChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler LockStateChanged @@ -1926,8 +1872,6 @@ namespace Tizen.System /// /// The AdsIdChanged event is triggered when the current ADS ID state is changed. /// - /// - /// The AdsIdChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler AdsIdChanged @@ -1969,8 +1913,6 @@ namespace Tizen.System /// /// The UltraDataSaveChanged event is triggered when the current Ultra Data Save state is changed. /// - /// - /// The UltraDataSaveChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler UltraDataSaveChanged @@ -2012,8 +1954,6 @@ namespace Tizen.System /// /// The UltraDataSavePackageListChanged event is triggered when the current ADS ID state is changed. /// - /// - /// The UltraDataSavePackageListChangedEventArgs object that contains the key and the changed value. /// http://tizen.org/privilege/systemsettings.admin /// platform public static event EventHandler UltraDataSavePackageListChanged