From: WonYoung Choi Date: Wed, 9 Mar 2016 14:04:23 +0000 (+0900) Subject: Document for public/protected API X-Git-Tag: submit/trunk/20170823.075128~121^2~221 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=01ea9b58ff26fa31588a262e94fb04b3b064ecaf;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git Document for public/protected API Change-Id: Ibd1aa6968963fa29b1aba0778add615869575f18 --- diff --git a/Tizen.Applications/Tizen.Applications.csproj b/Tizen.Applications/Tizen.Applications.csproj index 22bbda3..b819bfd 100644 --- a/Tizen.Applications/Tizen.Applications.csproj +++ b/Tizen.Applications/Tizen.Applications.csproj @@ -64,7 +64,8 @@ - + + diff --git a/Tizen.Applications/Tizen.Applications/AppControl.cs b/Tizen.Applications/Tizen.Applications/AppControl.cs index 1eda855..7629eed 100755 --- a/Tizen.Applications/Tizen.Applications/AppControl.cs +++ b/Tizen.Applications/Tizen.Applications/AppControl.cs @@ -12,7 +12,7 @@ using System; namespace Tizen.Applications { /// - /// + /// The AppControl to launch other application or an actor or a service. /// public class AppControl { @@ -25,47 +25,154 @@ namespace Tizen.Applications /// public static class Operations { + /// + /// An explicit launch for a homescreen application. + /// public const string Main = "http://tizen.org/appcontrol/operation/main"; + + /// + /// An explicit launch for an application that excludes a homescreen application. + /// public const string Default = "http://tizen.org/appcontrol/operation/default"; + + /// + /// Provides an editable access to the given data. + /// public const string Edit = "http://tizen.org/appcontrol/operation/edit"; + + /// + /// Displays the data. + /// public const string View = "http://tizen.org/appcontrol/operation/view"; + + /// + /// Picks items. + /// public const string Pick = "http://tizen.org/appcontrol/operation/pick"; + + /// + /// Creates contents. + /// public const string CreateContent = "http://tizen.org/appcontrol/operation/create_content"; + + /// + /// Performs a call to someone. + /// public const string Call = "http://tizen.org/appcontrol/operation/call"; + + /// + /// Delivers some data to someone else. + /// public const string Send = "http://tizen.org/appcontrol/operation/send"; + + /// + /// Delivers text data to someone else. + /// public const string SendText = "http://tizen.org/appcontrol/operation/send_text"; + + /// + /// Shares an item with someone else. + /// public const string Share = "http://tizen.org/appcontrol/operation/share"; + + /// + /// Shares multiple items with someone else. + /// public const string MultiShare = "http://tizen.org/appcontrol/operation/multi_share"; + + /// + /// Shares text data with someone else. + /// public const string ShareText = "http://tizen.org/appcontrol/operation/share_text"; + + /// + /// Dials a number. This shows a UI with the number to be dialed, allowing the user to explicitly initiate the call. + /// public const string Dial = "http://tizen.org/appcontrol/operation/dial"; + + /// + /// Performs a search. + /// public const string Search = "http://tizen.org/appcontrol/operation/search"; + + /// + /// Downloads items. + /// public const string Download = "http://tizen.org/appcontrol/operation/download"; + + /// + /// Prints contents. + /// public const string Print = "http://tizen.org/appcontrol/operation/print"; + + /// + /// Composes a message. + /// public const string Compose = "http://tizen.org/appcontrol/operation/compose"; + + /// + /// Can be launched by interested System-Event. + /// public const string LaunchOnEvent = "http://tizen.org/appcontrol/operation/launch_on_event"; + + /// + /// Adds an item. + /// public const string Add = "http://tizen.org/appcontrol/operation/add"; + + /// + /// Captures images by camera applications. + /// public const string ImageCapture = "http://tizen.org/appcontrol/operation/image_capture"; + + /// + /// Captures videos by camera applications. + /// public const string VideoCapture = "http://tizen.org/appcontrol/operation/video_capture"; + + /// + /// Shows system settings. + /// public const string Setting = "http://tizen.org/appcontrol/operation/setting"; - public const string SettingBtEnable = "http://tizen.org/appcontrol/operation/setting/bt_enable"; - public const string SettingBtVisibility = "http://tizen.org/appcontrol/operation/setting/bt_visibility"; + + /// + /// Shows settings to enable Bluetooth. + /// + public const string SettingBluetoothEnable = "http://tizen.org/appcontrol/operation/setting/bt_enable"; + + /// + /// Shows settings to configure Bluetooth visibility. + /// + public const string SettingBluetoothVisibility = "http://tizen.org/appcontrol/operation/setting/bt_visibility"; + + /// + /// Shows settings to allow configuration of current location sources. + /// public const string SettingLocation = "http://tizen.org/appcontrol/operation/setting/location"; + + /// + /// Shows NFC settings. + /// public const string SettingNfc = "http://tizen.org/appcontrol/operation/setting/nfc"; + + /// + /// Shows settings to allow configuration of Wi-Fi. + /// public const string SettingWifi = "http://tizen.org/appcontrol/operation/setting/wifi"; } /// - /// + /// Gets the operation to be performed. /// public string Operation { get { return _operation; } } /// - /// + /// Gets the explicit MIME type of the data. /// public string Mime { get { return _mime; } } /// - /// + /// Gets the URI of the data. /// public string Uri { get { return _uri; } }