Release 4.0.0-preview1-00201
[platform/core/csapi/tizenfx.git] / Artifacts / bin / public / Tizen.Applications.Common.xml
index 4be4926..9bfc03e 100644 (file)
-<?xml version="1.0"?>
-<doc>
-    <assembly>
-        <name>Tizen.Applications.Common</name>
-    </assembly>
-    <members>
-        <member name="T:Tizen.Applications.CoreBackend.DefaultCoreBackend">
-            <summary>
-            An abstract class to provide default event handlers for apps.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.CoreBackend.DefaultCoreBackend.AppEventType">
-            <summary>
-            Low level event types.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.CoreBackend.EventType">
-            <summary>
-            This class represents the type of event for backends. This class can be converted from the string type.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.CoreBackend.EventType.PreCreated">
-            <summary>
-            Pre-defined event type "PreCreated".
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.CoreBackend.EventType.Created">
-            <summary>
-            Pre-defined event type "Created".
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.CoreBackend.EventType.Terminated">
-            <summary>
-            Pre-defined event type "Terminated".
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.CoreBackend.EventType.AppControlReceived">
-            <summary>
-            Pre-defined event type "AppControlReceived".
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.CoreBackend.EventType.Resumed">
-            <summary>
-            Pre-defined event type "Resumed".
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.CoreBackend.EventType.Paused">
-            <summary>
-            Pre-defined event type "Paused".
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.CoreBackend.EventType.LowMemory">
-            <summary>
-            Pre-defined event type "LowMemory".
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.CoreBackend.EventType.LowBattery">
-            <summary>
-            Pre-defined event type "LowBattery".
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.CoreBackend.EventType.LocaleChanged">
-            <summary>
-            Pre-defined event type "LocaleChanged".
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.CoreBackend.EventType.RegionFormatChanged">
-            <summary>
-            Pre-defined event type "RegionFormatChanged".
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.CoreBackend.EventType.DeviceOrientationChanged">
-            <summary>
-            Pre-defined event type "DeviceOrientationChanged".
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.CoreBackend.EventType.#ctor(System.String)">
-            <summary>
-            Initializes the EventType class.
-            </summary>
-            <param name="name">The name of event type.</param>
-        </member>
-        <member name="M:Tizen.Applications.CoreBackend.EventType.ToString">
-            <summary>
-            Returns the name of event type.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.CoreBackend.EventType.GetHashCode">
-            <summary>
-            Returns the hash code for event type string.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.CoreBackend.EventType.Equals(System.Object)">
-            <summary>
-            Determines whether this instance and a specified object.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.CoreBackend.EventType.op_Implicit(System.String)~Tizen.Applications.CoreBackend.EventType">
-            <summary>
-            Converts a string to EventType instance.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.CoreBackend.ICoreBackend">
-            <summary>
-            An interface that represents the backend lifecycles.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.CoreBackend.ICoreBackend.AddEventHandler(Tizen.Applications.CoreBackend.EventType,System.Action)">
-            <summary>
-            Adds an event handler.
-            </summary>
-            <param name="evType">The type of event.</param>
-            <param name="handler">The handler method without arguments.</param>
-        </member>
-        <member name="M:Tizen.Applications.CoreBackend.ICoreBackend.AddEventHandler``1(Tizen.Applications.CoreBackend.EventType,System.Action{``0})">
-            <summary>
-            Adds an event handler.
-            </summary>
-            <typeparam name="TEventArgs">The EventArgs type used in arguments of the handler method.</typeparam>
-            <param name="evType">The type of event.</param>
-            <param name="handler">The handler method with a TEventArgs type argument.</param>
-        </member>
-        <member name="M:Tizen.Applications.CoreBackend.ICoreBackend.Run(System.String[])">
-            <summary>
-            Runs the mainloop of the backend.
-            </summary>
-            <param name="args"></param>
-        </member>
-        <member name="M:Tizen.Applications.CoreBackend.ICoreBackend.Exit">
-            <summary>
-            Exits the mainloop of the backend.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.AppControl">
-            <summary>
-            Represents the control message to exchange between applications.
-            </summary>
-            <example>
-            <code>
-            public class AppControlExample : UIApplication
-            {
-                /// ...
-                protected override void OnAppControlReceived(AppControlReceivedEventArgs e)
-                {
-                    AppControl appControl = new AppControl();
-                    appControl.ApplicationId = "org.tizen.calculator";
-                    AppControl.SendLaunchRequest(appControl, (launchRequest, replyRequest, result) => {
-                        // ...
-                    });
-                }
-            }
-            </code>
-            </example>
-        </member>
-        <member name="M:Tizen.Applications.AppControl.#ctor">
-            <summary>
-            Initializes the instance of the AppControl class.
-            </summary>
-            <exception cref="T:System.InvalidOperationException">Thrown when failed to create the AppControl handle.</exception>
-        </member>
-        <member name="M:Tizen.Applications.AppControl.#ctor(System.Boolean)">
-            <summary>
-            Initializes the instance of the AppControl class with a parameter.
-            </summary>
-            <param name="enableAppStartedResultEvent">The flag value to receive an additional launch result event on the launch request.</param>
-            <exception cref="T:System.InvalidOperationException">Thrown when failed to create the AppControl handle.</exception>
-        </member>
-        <member name="M:Tizen.Applications.AppControl.#ctor(Tizen.Applications.SafeAppControlHandle)">
-            <summary>
-            Initializes the instance of the AppControl class with the SafeAppControlHandle.
-            </summary>
-            <param name="handle"></param>
-        </member>
-        <member name="P:Tizen.Applications.AppControl.SafeAppControlHandle">
-            <summary>
-            Gets the SafeAppControlHandle instance.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.AppControl.Operation">
-            <summary>
-            Gets and sets the operation to be performed.
-            </summary>
-            <value>
-            The operation is the mandatory information for the launch request. If the operation is not specified,
-            AppControlOperations.Default is used for the launch request. If the operation is AppControlOperations.Default,
-            the package information is mandatory to explicitly launch the application.
-            (if the operation is null for setter, it clears the previous value.)
-            </value>
-            <example>
-            <code>
-            AppControl appControl = new AppControl();
-            appControl.Operation = AppControlOperations.Default;
-            Log.Debug(LogTag, "Operation: " + appControl.Operation);
-            </code>
-            </example>
-        </member>
-        <member name="P:Tizen.Applications.AppControl.Mime">
-            <summary>
-            Gets and sets the explicit MIME type of the data.
-            </summary>
-            <value>
-            (if the mime is null for setter, it clears the previous value.)
-            </value>
-            <example>
-            <code>
-            AppControl appControl = new AppControl();
-            appControl.Mime = "image/jpg";
-            Log.Debug(LogTag, "Mime: " + appControl.Mime);
-            </code>
-            </example>
-        </member>
-        <member name="P:Tizen.Applications.AppControl.Uri">
-            <summary>
-            Gets and sets the URI of the data.
-            </summary>
-            <value>
-            Since Tizen 2.4, if the parameter 'uri' is started with 'file://' and
-            it is a regular file in this application's data path, which can be obtained
-            by property DataPath in ApplicationInfo class,
-            it will be shared to the callee application.
-            Framework will grant a temporary permission to the callee application for this file and
-            revoke it when the callee application is terminated.
-            The callee application can just read it.
-            (if the uri is null for setter, it clears the previous value.)
-            </value>
-            <example>
-            <code>
-            public class AppControlExample : UIApplication
-            {
-                ...
-                protected override void OnAppControlReceived(AppControlReceivedEventArgs e)
-                {
-                    ...
-                    AppControl appControl = new AppControl();
-                    appContrl.Uri = this.ApplicationInfo.DataPath + "image.jpg";
-                    Log.Debug(LogTag, "Set Uri: " + appControl.Uri);
-                }
-            }
-            </code>
-            </example>
-        </member>
-        <member name="P:Tizen.Applications.AppControl.Category">
-            <summary>
-            Gets and sets the explicit category.
-            </summary>
-            <value>
-            (if the category is null for setter, it clears the previous value.)
-            </value>
-        </member>
-        <member name="P:Tizen.Applications.AppControl.ApplicationId">
-            <summary>
-            Gets and sets the application ID to explicitly launch.
-            </summary>
-            <value>
-            (if the application ID is null for setter, it clears the previous value.)
-            </value>
-            <example>
-            <code>
-            AppControl appControl = new AppControl();
-            appControl.ApplicationId = "org.tizen.calculator";
-            Log.Debug(LogTag, "ApplicationId: " + appControl.ApplicationId);
-            </code>
-            </example>
-        </member>
-        <member name="P:Tizen.Applications.AppControl.LaunchMode">
-            <summary>
-            Gets and sets the launch mode of the application.
-            </summary>
-            <value>
-            Although, LaunchMode were set as AppControlLaunchMode.Group, the
-            callee application would be launched as a single mode
-            if the manifest file of callee application defined the launch mode as "single".
-            This property can just set the preference of the caller application to launch an application.
-            Sub-applications, which were launched as a group mode always have own process.
-            Since Tizen 3.0, if launch mode is not set in the caller application control,
-            this property returns the AppControlLaunchMode.Single launch mode.
-            </value>
-            <example>
-            <code>
-            AppControl appControl = new AppControl();
-            appControl.LaunchMode = AppControlLaunchMode.Group;
-            </code>
-            </example>
-        </member>
-        <member name="P:Tizen.Applications.AppControl.ExtraData">
-            <summary>
-            Gets the collection of the extra data.
-            </summary>
-            <value>
-            Extra data for communication between AppControls.
-            </value>
-            <example>
-            <code>
-            AppControl appControl = new AppControl();
-            appControl.ExtraData.Add("key", "value");
-            ...
-            </code>
-            </example>
-        </member>
-        <!-- Badly formed XML comment ignored for member "M:Tizen.Applications.AppControl.GetMatchedApplicationIds(Tizen.Applications.AppControl)" -->
-        <member name="M:Tizen.Applications.AppControl.SendLaunchRequest(Tizen.Applications.AppControl)">
-            <summary>
-            Sends the launch request.
-            </summary>
-            <remarks>
-            The operation is mandatory information for the launch request.
-            If the operation is not specified, AppControlOperations.Default is used by default.
-            If the operation is AppControlOperations.Default, the application ID is mandatory to explicitly launch the application. \n
-            Since Tizen 2.4, the launch request of the service application over out of packages is restricted by the platform.
-            Also, implicit launch requests are NOT delivered to service applications since 2.4.
-            To launch a service application, an explicit launch request with the application ID given by property ApplicationId MUST be sent.
-            </remarks>
-            <param name="launchRequest">The AppControl.</param>
-            <exception cref="T:System.ArgumentNullException">Thrown when failed because of a null argument.</exception>
-            <exception cref="T:System.InvalidOperationException">Thrown when failed because of an invalid operation.</exception>
-            <exception cref="T:System.TimeoutException">Thrown when failed because of timeout.</exception>
-            <privilege>http://tizen.org/privilege/appmanager.launch</privilege>
-            <example>
-            <code>
-            AppControl appControl = new AppControl();
-            appControl.ApplicationId = "org.tizen.calculator";
-            AppControl.SendLaunchRequest(appControl);
-            </code>
-            </example>
-        </member>
-        <member name="M:Tizen.Applications.AppControl.SendLaunchRequest(Tizen.Applications.AppControl,Tizen.Applications.AppControlReplyCallback)">
-            <summary>
-            Sends the launch request.
-            </summary>
-            <remarks>
-            The operation is mandatory information for the launch request.
-            If the operation is not specified, AppControlOperations.Default is used by default.
-            If the operation is AppControlOperations.Default, the application ID is mandatory to explicitly launch the application. \n
-            Since Tizen 2.4, the launch request of the service application over out of packages is restricted by the platform.
-            Also, implicit launch requests are NOT delivered to service applications since 2.4.
-            To launch a service application, an explicit launch request with the application ID given by property ApplicationId MUST be sent.
-            </remarks>
-            <param name="launchRequest">The AppControl.</param>
-            <param name="replyAfterLaunching">The callback function to be called when the reply is delivered.</param>
-            <exception cref="T:System.ArgumentException">Thrown when failed because of the argument is invalid.</exception>
-            <exception cref="T:System.InvalidOperationException">Thrown when failed because of an invalid operation.</exception>
-            <exception cref="T:System.TimeoutException">Thrown when failed because of timeout.</exception>
-            <privilege>http://tizen.org/privilege/appmanager.launch</privilege>
-            <example>
-            <code>
-            AppControl appControl = new AppControl();
-            appControl.ApplicationId = "org.tizen.calculator";
-            AppControl.SendLaunchRequest(appControl, (launchRequest, replyRequest, result) => {
-                // ...
-            });
-            </code>
-            </example>
-        </member>
-        <member name="M:Tizen.Applications.AppControl.SendTerminateRequest(Tizen.Applications.AppControl)">
-            <summary>
-            Sends the terminate request to the application that is launched by AppControl.
-            </summary>
-            <remarks>
-            You are not allowed to terminate other general applications using this API.
-            This API can be used to terminate sub-applications, which were launched as a group mode by the caller application.
-            Once the callee application is being terminated by this API,
-            other applications, which were launched by the callee application as a group mode will be terminated as well.
-            </remarks>
-            <param name="terminateRequest">The AppControl.</param>
-            <exception cref="T:System.ArgumentException">Thrown when failed because of the argument is invalid.</exception>
-            <exception cref="T:System.InvalidOperationException">Thrown when failed because of an invalid operation.</exception>
-            <exception cref="T:System.TimeoutException">Thrown when failed because of timeout.</exception>
-            <example>
-            <code>
-            AppControl terminateRequest = new AppControl();
-            terminateRequest.ApplicationId = "org.tizen.calculator";
-            AppControl.SendTerminateRequest(terminateRequest);
-            </code>
-            </example>
-        </member>
-        <member name="T:Tizen.Applications.AppControl.ExtraDataCollection">
-            <summary>
-            Class for extra data.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.AppControl.ExtraDataCollection.Add(System.String,System.String)">
-            <summary>
-            Adds extra data.
-            </summary>
-            <remarks>
-            The function replaces any existing value for the given key.
-            </remarks>
-            <param name="key">The name of the extra data.</param>
-            <param name="value">The value associated with the given key.</param>
-            <exception cref="T:System.ArgumentNullException">Thrown when a key or a value is a zero-length string.</exception>
-            <exception cref="T:System.ArgumentException">Thrown when the application tries to use the same key with the system-defined key.</exception>
-            <example>
-            <code>
-            AppControl appControl = new AppControl();
-            appControl.ExtraData.Add("myKey", "myValue");
-            </code>
-            </example>
-        </member>
-        <member name="M:Tizen.Applications.AppControl.ExtraDataCollection.Add(System.String,System.Collections.Generic.IEnumerable{System.String})">
-            <summary>
-            Adds extra data.
-            </summary>
-            <remarks>
-            The function replaces any existing value for the given key.
-            </remarks>
-            <param name="key">The name of the extra data.</param>
-            <param name="value">The value associated with the given key.</param>
-            <exception cref="T:System.ArgumentNullException">Thrown when key or value is a zero-length string.</exception>
-            <exception cref="T:System.ArgumentException">Thrown when the application tries to use the same key with the system-defined key.</exception>
-            <example>
-            <code>
-            AppControl appControl = new AppControl();
-            string[] myValues = new string[] { "first", "second", "third" };
-            appControl.ExtraData.Add("myKey", myValues);
-            </code>
-            </example>
-        </member>
-        <!-- Badly formed XML comment ignored for member "M:Tizen.Applications.AppControl.ExtraDataCollection.Get``1(System.String)" -->
-        <member name="M:Tizen.Applications.AppControl.ExtraDataCollection.Get(System.String)">
-            <summary>
-            Gets the extra data.
-            </summary>
-            <param name="key">The name of extra data.</param>
-            <returns>The value associated with the given key.</returns>
-            <exception cref="T:System.ArgumentNullException">Thrown when the key is an invalid parameter.</exception>
-            <exception cref="T:System.Collections.Generic.KeyNotFoundException">Thrown when the key is not found.</exception>
-            <exception cref="T:System.ArgumentException">Thrown when the key is rejected.</exception>
-            <example>
-            <code>
-            AppControl appControl = new AppControl();
-            string myValue = appControl.ExtraData.Get("myKey") as string;
-            if (myValue != null)
-            {
-                // ...
-            }
-            </code>
-            </example>
-        </member>
-        <!-- Badly formed XML comment ignored for member "M:Tizen.Applications.AppControl.ExtraDataCollection.GetKeys" -->
-        <member name="M:Tizen.Applications.AppControl.ExtraDataCollection.TryGet(System.String,System.String@)">
-            <summary>
-            Tries getting the extra data.
-            </summary>
-            <param name="key">The name of extra data.</param>
-            <param name="value">The value associated with the given key.</param>
-            <returns>The result whether getting the value is done.</returns>
-            <exception cref="T:System.ArgumentNullException">Thrown when the key is an invalid parameter.</exception>
-            <exception cref="T:System.Collections.Generic.KeyNotFoundException">Thrown when the key is not found.</exception>
-            <exception cref="T:System.ArgumentException">Thrown when the key is rejected.</exception>
-            <example>
-            <code>
-            AppControl appControl = new AppControl();
-            string myValue = string.Empty;
-            bool result = appControl.ExtraData.TryGet("myKey", out myValue);
-            if (result != null)
-            {
-                // ...
-            }
-            </code>
-            </example>
-        </member>
-        <!-- Badly formed XML comment ignored for member "M:Tizen.Applications.AppControl.ExtraDataCollection.TryGet(System.String,System.Collections.Generic.IEnumerable{System.String}@)" -->
-        <member name="M:Tizen.Applications.AppControl.ExtraDataCollection.Remove(System.String)">
-            <summary>
-            Removes the extra data.
-            </summary>
-            <param name="key">The name of the extra data.</param>
-            <exception cref="T:System.ArgumentNullException">Thrown when the key is a zero-length string.</exception>
-            <exception cref="T:System.Collections.Generic.KeyNotFoundException">Thrown when the key is not found.</exception>
-            <exception cref="T:System.ArgumentException">Thrown when the key is rejected.</exception>
-            <example>
-            <code>
-            AppControl appControl = new AppControl();
-            appControl.ExtraData.Remove("myKey");
-            </code>
-            </example>
-        </member>
-        <member name="M:Tizen.Applications.AppControl.ExtraDataCollection.Count">
-            <summary>
-            Counts keys in the extra data.
-            </summary>
-            <returns>The number of counting keys.</returns>
-            <exception cref="T:System.InvalidOperationException">Thrown when the key is an invalid parameter.</exception>
-            <example>
-            <code>
-            AppControl appControl = new AppControl();
-            int numberOfKeys = appControl.ExtraData.Count();
-            </code>
-            </example>
-        </member>
-        <member name="M:Tizen.Applications.AppControl.ExtraDataCollection.IsCollection(System.String)">
-            <summary>
-            Checks whether the extra data associated with the given key is of the collection data type.
-            </summary>
-            <param name="key">The name of the extra data.</param>
-            <returns>If true, the extra data is of the array data type, otherwise false.</returns>
-            <exception cref="T:System.ArgumentNullException">Thrown when the key is a zero-length string.</exception>
-            <exception cref="T:System.InvalidOperationException">Thrown when failed to check the key.</exception>
-            <example>
-            <code>
-            AppControl appControl = new AppControl();
-            bool result = appControl.ExtraData.IsCollection("myKey");
-            </code>
-            </example>
-        </member>
-        <member name="T:Tizen.Applications.AppControlData">
-            <summary>
-            Data of the AppControl.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlData.Subject">
-            <summary>
-            Subject.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlData.To">
-            <summary>
-            Recipients.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlData.Cc">
-            <summary>
-            E-mail addresses that should be carbon copied.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlData.Bcc">
-            <summary>
-            E-mail addresses that should be blind carbon copied.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlData.Text">
-            <summary>
-            Text.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlData.Title">
-            <summary>
-            Title.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlData.Selected">
-            <summary>
-            Selected items.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlData.Path">
-            <summary>
-            Paths of items.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlData.SectionMode">
-            <summary>
-            Selection mode ("single" or "multiple").
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlData.AllDay">
-            <summary>
-            All-day mode of the event ("true" or "false").
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlData.StartTime">
-            <summary>
-            Start time of the event (format: YYYY-MM-DD HH:MM:SS).
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlData.Endtime">
-            <summary>
-            End time of the event (format: YYYY-MM-DD HH:MM:SS).
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlData.Email">
-            <summary>
-            E-mail addressed.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlData.Phone">
-            <summary>
-            Phone numbers.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlData.Url">
-            <summary>
-            URLs.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlData.Ids">
-            <summary>
-            IDs.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlData.Type">
-            <summary>
-            Type.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlData.TotalCount">
-            <summary>
-            Total count.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlData.TotalSize">
-            <summary>
-            Total size (unit : bytes).
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlData.Name">
-            <summary>
-            Name.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlData.Location">
-            <summary>
-            Location.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlData.InputType">
-            <summary>
-            Select the type of input method.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlData.InputDefaultText">
-            <summary>
-            Send the pre inputted text, such as "http://" in web.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlData.InputGuideText">
-            <summary>
-            Send guide text to show to the user, such as "Input user name".
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlData.InputPredictionHint">
-            <summary>
-            Send text to receive answer result from smart reply.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.AppControlLaunchMode">
-            <summary>
-            Enumeration for the application control launch mode.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlLaunchMode.Single">
-            <summary>
-            Prefer to launch an application as a single mode.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlLaunchMode.Group">
-            <summary>
-            Prefer to launch an application as a group mode.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.AppControlOperations">
-            <summary>
-            Operations of the AppControl.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlOperations.Main">
-            <summary>
-            An explicit launch for a homescreen application.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlOperations.Default">
-            <summary>
-            An explicit launch for an application that excludes a homescreen application.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlOperations.Edit">
-            <summary>
-            Provides an editable access to the given data.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlOperations.View">
-            <summary>
-            Displays the data.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlOperations.Pick">
-            <summary>
-            Picks items.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlOperations.CreateContent">
-            <summary>
-            Creates contents.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlOperations.Call">
-            <summary>
-            Performs a call to someone.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlOperations.Send">
-            <summary>
-            Delivers some data to someone else.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlOperations.SendText">
-            <summary>
-            Delivers text data to someone else.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlOperations.Share">
-            <summary>
-            Shares an item with someone else.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlOperations.MultiShare">
-            <summary>
-            Shares multiple items with someone else.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlOperations.ShareText">
-            <summary>
-            Shares text data with someone else.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlOperations.Dial">
-            <summary>
-            Dials a number. This shows an UI with the number to be dialed, allowing the user to explicitly initiate the call.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlOperations.Search">
-            <summary>
-            Performs a search.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlOperations.Download">
-            <summary>
-            Downloads items.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlOperations.Print">
-            <summary>
-            Prints contents.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlOperations.Compose">
-            <summary>
-            Composes a message.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlOperations.LaunchOnEvent">
-            <summary>
-            Can be launched by interested System-Event.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlOperations.Add">
-            <summary>
-            Adds an item.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlOperations.ImageCapture">
-            <summary>
-            Captures images by camera applications.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlOperations.VideoCapture">
-            <summary>
-            Captures videos by camera applications.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlOperations.Setting">
-            <summary>
-            Shows system settings.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlOperations.SettingBluetoothEnable">
-            <summary>
-            Shows settings to enable Bluetooth.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlOperations.SettingBluetoothVisibility">
-            <summary>
-            Shows settings to configure the Bluetooth visibility.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlOperations.SettingLocation">
-            <summary>
-            Shows settings to allow configuration of current location sources.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlOperations.SettingNfc">
-            <summary>
-            Shows NFC settings.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlOperations.SettingWifi">
-            <summary>
-            Shows settings to allow configuration of Wi-Fi.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.AppControlReceivedEventArgs">
-            <summary>
-            Arguments for the event that raised when the application receives the AppControl.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.AppControlReceivedEventArgs.#ctor(Tizen.Applications.ReceivedAppControl)">
-            <summary>
-            Initializes the AppControlReceivedEventArgs class.
-            </summary>
-            <param name="appControl"></param>
-        </member>
-        <member name="P:Tizen.Applications.AppControlReceivedEventArgs.ReceivedAppControl">
-            <summary>
-            The received AppControl.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.AppControlReplyCallback">
-            <summary>
-            Reply callback for the launch request
-            </summary>
-            <param name="launchRequest">The AppControl of the launch request that has been sent</param>
-            <param name="replyRequest">The AppControl in which the results of the callee are contained</param>
-            <param name="result">The result of the launch request</param>
-        </member>
-        <member name="T:Tizen.Applications.AppControlReplyResult">
-            <summary>
-            Enumeration for the application control result.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlReplyResult.AppStarted">
-            <summary>
-            The callee application launched actually.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlReplyResult.Succeeded">
-            <summary>
-            The operation succeeded.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlReplyResult.Failed">
-            <summary>
-            The operation failed by the callee.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.AppControlReplyResult.Canceled">
-            <summary>
-            The operation canceled by the platform.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.Application">
-            <summary>
-            The class that represents a Tizen application.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.Application.Current">
-            <summary>
-            Gets the instance of the current application.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.Application.DirectoryInfo">
-            <summary>
-            Gets the class representing directory information of the current application.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.Application.ApplicationInfo">
-            <summary>
-            Gets the class representing information of the current application.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.Application.Run(System.String[])">
-            <summary>
-            Runs the application's main loop.
-            </summary>
-            <param name="args">Arguments from commandline.</param>
-        </member>
-        <member name="M:Tizen.Applications.Application.Exit">
-            <summary>
-            Exits the main loop of the application.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.Application.Dispose(System.Boolean)">
-            <summary>
-            Releases any unmanaged resources used by this object. Can also dispose any other disposable objects.
-            </summary>
-            <param name="disposing">If true, disposes any disposable objects. If false, does not dispose disposable objects.</param>
-        </member>
-        <member name="M:Tizen.Applications.Application.Finalize">
-            <summary>
-            Finalizer of the application class.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.Application.Dispose">
-            <summary>
-            Releases all resources used by the application class.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.ApplicationDisabledEventArgs">
-            <summary>
-            Arguments for the event raised when the application is disabled.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.ApplicationDisabledEventArgs.ApplicationId">
-            <summary>
-            The ID of the application.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.ApplicationDisabledEventArgs.EventState">
-            <summary>
-            The event state of the application.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.ApplicationEnabledEventArgs">
-            <summary>
-            Arguments for the event raised when the application is enabled.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.ApplicationEnabledEventArgs.ApplicationId">
-            <summary>
-            The ID of the application.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.ApplicationEnabledEventArgs.EventState">
-            <summary>
-            The event state of the application.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.ApplicationEventState">
-            <summary>
-            Enumeration for the application event state.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.ApplicationEventState.Started">
-            <summary>
-            Processing started.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.ApplicationEventState.Completed">
-            <summary>
-            Processing completed.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.ApplicationEventState.Failed">
-            <summary>
-            Processing failed.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.ApplicationInfo">
-            <summary>
-            This class provides methods and properties to get information of the application.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.ApplicationInfo.#ctor(System.String)">
-            <summary>
-            A constructor of ApplicationInfo that takes the application ID.
-            </summary>
-            <param name="applicationId">Application ID.</param>
-        </member>
-        <member name="M:Tizen.Applications.ApplicationInfo.Finalize">
-            <summary>
-            Destructor of the class.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.ApplicationInfo.ApplicationId">
-            <summary>
-            Gets the application ID.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.ApplicationInfo.PackageId">
-            <summary>
-            Gets the package ID of the application.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.ApplicationInfo.Label">
-            <summary>
-            Gets the label of the application.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.ApplicationInfo.ExecutablePath">
-            <summary>
-            Gets the executable path of the application.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.ApplicationInfo.IconPath">
-            <summary>
-            Gets the absolute path to the icon image.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.ApplicationInfo.ApplicationType">
-            <summary>
-            Gets the application type name.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.ApplicationInfo.Metadata">
-            <summary>
-            Gets the application's metadata.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.ApplicationInfo.IsNoDisplay">
-            <summary>
-            Checks whether the application information is nodisplay. If the application icon is not displayed on the menu screen, true; otherwise, false.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.ApplicationInfo.IsOnBoot">
-            <summary>
-            Checks whether the application is launched on booting time. If the application automatically starts on boot, true; otherwise, false.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.ApplicationInfo.IsPreload">
-            <summary>
-            Checks whether the application is preloaded. If the application is preloaded, true; otherwise, false.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.ApplicationInfo.SharedDataPath">
-            <summary>
-            Gets the shared data path.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.ApplicationInfo.SharedResourcePath">
-            <summary>
-            Gets the shared resource path.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.ApplicationInfo.SharedTrustedPath">
-            <summary>
-            Gets the shared trust path.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.ApplicationInfo.ExternalSharedDataPath">
-            <summary>
-            Gets the external shared data path.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.ApplicationInfo.GetLocalizedLabel(System.String)">
-            <summary>
-            Gets the localized label of the application for the given locale.
-            </summary>
-            <param name="locale">Locale.</param>
-        </member>
-        <member name="M:Tizen.Applications.ApplicationInfo.Dispose">
-            <summary>
-            Releases all resources used by the ApplicationInfo class.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.ApplicationInfoFilter">
-            <summary>
-            This class is a parameter of the GetInstalledApplicationsAsync method.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.ApplicationInfoFilter.#ctor">
-             <summary>
-            
-             </summary>
-        </member>
-        <member name="T:Tizen.Applications.ApplicationInfoFilter.Keys">
-            <summary>
-            This class is a possible key to use in the InstalledApplicationFilter.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.ApplicationInfoFilter.Keys.Id">
-             <summary>
-            
-             </summary>
-        </member>
-        <member name="F:Tizen.Applications.ApplicationInfoFilter.Keys.Type">
-             <summary>
-            
-             </summary>
-        </member>
-        <member name="F:Tizen.Applications.ApplicationInfoFilter.Keys.Category">
-             <summary>
-            
-             </summary>
-        </member>
-        <member name="F:Tizen.Applications.ApplicationInfoFilter.Keys.NoDisplay">
-             <summary>
-            
-             </summary>
-        </member>
-        <member name="F:Tizen.Applications.ApplicationInfoFilter.Keys.TaskManage">
-             <summary>
-            
-             </summary>
-        </member>
-        <member name="P:Tizen.Applications.ApplicationInfoFilter.Filter">
-             <summary>
-            
-             </summary>
-        </member>
-        <member name="T:Tizen.Applications.ApplicationInfoMetadataFilter">
-            <summary>
-            This class is a parameter of the GetInstalledApplicationsAsync method.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.ApplicationLaunchedEventArgs">
-            <summary>
-            Arguments for the event raised when the application is launched.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.ApplicationLaunchedEventArgs.ApplicationRunningContext">
-            <summary>
-            The information of the application.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.ApplicationManager">
-            <summary>
-            This class has the methods and events of the ApplicationManager.
-            </summary>
-        </member>
-        <member name="E:Tizen.Applications.ApplicationManager.ApplicationEnabled">
-            <summary>
-            Occurs whenever the installed application is enabled.
-            </summary>
-        </member>
-        <member name="E:Tizen.Applications.ApplicationManager.ApplicationDisabled">
-            <summary>
-            Occurs whenever the installed application is disabled.
-            </summary>
-        </member>
-        <member name="E:Tizen.Applications.ApplicationManager.ApplicationLaunched">
-            <summary>
-            Occurs whenever the installed applications get launched.
-            </summary>
-        </member>
-        <member name="E:Tizen.Applications.ApplicationManager.ApplicationTerminated">
-            <summary>
-            Occurs whenever the installed applications get terminated.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.ApplicationManager.GetInstalledApplicationsAsync">
-            <summary>
-            Gets the information of the installed applications asynchronously.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.ApplicationManager.GetInstalledApplicationsAsync(Tizen.Applications.ApplicationInfoFilter)">
-            <summary>
-            Gets the information of the installed applications with the ApplicationInfoFilter asynchronously.
-            </summary>
-            <param name="filter">Key-value pairs for filtering.</param>
-        </member>
-        <member name="M:Tizen.Applications.ApplicationManager.GetInstalledApplicationsAsync(Tizen.Applications.ApplicationInfoMetadataFilter)">
-            <summary>
-            Gets the information of the installed applications with the ApplicationInfoMetadataFilter asynchronously.
-            </summary>
-            <param name="filter">Key-value pairs for filtering.</param>
-        </member>
-        <member name="M:Tizen.Applications.ApplicationManager.GetRunningApplicationsAsync">
-            <summary>
-            Gets the information of the running applications asynchronously.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.ApplicationManager.GetAllRunningApplicationsAsync">
-            <summary>
-            Gets the information of the running applications including subapp asynchronously.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.ApplicationManager.GetInstalledApplication(System.String)">
-            <summary>
-            Gets the information of the specified application with the application ID.
-            </summary>
-            <param name="applicationId">Application ID.</param>
-        </member>
-        <member name="M:Tizen.Applications.ApplicationManager.IsRunning(System.String)">
-            <summary>
-            Returns if the specified application is running or not.
-            </summary>
-            <param name="applicationId">The application ID.</param>
-            <returns>Returns true if the given application is running, otherwise false.</returns>
-            <exception cref="T:System.ArgumentException">Thrown when the given parameter is invalid.</exception>
-        </member>
-        <member name="M:Tizen.Applications.ApplicationManager.GetRecentApplications">
-            <summary>
-            Gets the information of the recent applications.
-            </summary>
-            <returns>Returns a dictionary containing all the recent application info.</returns>
-            <exception cref="T:System.InvalidOperationException">Thrown when failed because of an invalid operation.</exception>
-        </member>
-        <member name="T:Tizen.Applications.ApplicationRunningContext">
-            <summary>
-            This class provides methods and properties to get information of the application.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.ApplicationRunningContext.#ctor(System.String)">
-            <summary>
-            A constructor of ApplicationRunningContext that takes the application ID.
-            </summary>
-            <param name="applicationId">Application ID.</param>
-            <exception cref="T:System.ArgumentException">Thrown when failed because of an invalid argument.</exception>
-            <exception cref="T:System.InvalidOperationException">Thrown when failed because of the "application not exist" error or the system error.</exception>
-            <exception cref="T:System.OutOfMemoryException">Thrown when failed because of out of memory.</exception>
-        </member>
-        <member name="M:Tizen.Applications.ApplicationRunningContext.#ctor(System.String,System.String)">
-            <summary>
-            A constructor of ApplicationRunningContext that takes the application id.
-            </summary>
-            <param name="applicationId">application id.</param>
-            <param name="instanceId">instance id.</param>
-            <exception cref="T:System.ArgumentException">Thrown when failed of invalid argument.</exception>
-            <exception cref="T:System.InvalidOperationException">Thrown when failed because of application not exist error or system error.</exception>
-            <exception cref="T:System.OutOfMemoryException">Thrown when failed because of out of memory.</exception>
-        </member>
-        <member name="M:Tizen.Applications.ApplicationRunningContext.Finalize">
-            <summary>
-            Destructor of the class.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.ApplicationRunningContext.AppState">
-            <summary>
-            Enumeration for the application state.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.ApplicationRunningContext.AppState.Undefined">
-            <summary>
-            The undefined state.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.ApplicationRunningContext.AppState.Foreground">
-            <summary>
-            The UI application is running in the foreground.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.ApplicationRunningContext.AppState.Background">
-            <summary>
-            The UI application is running in the background.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.ApplicationRunningContext.AppState.Service">
-            <summary>
-            The service application is running.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.ApplicationRunningContext.AppState.Terminated">
-            <summary>
-            The application is terminated.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.ApplicationRunningContext.ApplicationId">
-            <summary>
-            Gets the application ID.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.ApplicationRunningContext.PackageId">
-            <summary>
-            Gets the package ID of the application.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.ApplicationRunningContext.ProcessId">
-            <summary>
-            Gets the application's process ID.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.ApplicationRunningContext.State">
-            <summary>
-            Gets the state of the application.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.ApplicationRunningContext.IsSubApp">
-            <summary>
-            Gets whether the application is sub application of the application group.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.ApplicationRunningContext.Terminate">
-            <summary>
-            Terminates the application.
-            </summary>
-            <exception cref="T:System.ArgumentException">Thrown when failed of invalid argument.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">Thrown when failed because of permission denied.</exception>
-            <exception cref="T:System.InvalidOperationException">Thrown when failed because of system error.</exception>
-            <privilege>http://tizen.org/privilege/appmanager.kill</privilege>
-        </member>
-        <member name="M:Tizen.Applications.ApplicationRunningContext.Resume">
-            <summary>
-            Resumes the running application.
-            </summary>
-            <exception cref="T:System.ArgumentException">Thrown when failed of invalid argument.</exception>
-            <exception cref="T:System.UnauthorizedAccessException">Thrown when failed because of permission denied.</exception>
-            <exception cref="T:System.InvalidOperationException">Thrown when failed because of system error.</exception>
-            <privilege>http://tizen.org/privilege/appmanager.launch</privilege>
-        </member>
-        <member name="M:Tizen.Applications.ApplicationRunningContext.Dispose">
-            <summary>
-            Releases all resources used by the ApplicationRunningContext class.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.ApplicationTerminatedEventArgs">
-            <summary>
-            Arguments for the event raised when the application is terminated.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.ApplicationTerminatedEventArgs.ApplicationRunningContext">
-            <summary>
-            The information of the application.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.ApplicationType">
-            <summary>
-            Enumeration for the applications type.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.ApplicationType.All">
-            <summary>
-            All applications.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.ApplicationType.Ui">
-            <summary>
-            UI applications.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.ApplicationType.Service">
-            <summary>
-            Service applications.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.Bundle">
-            <summary>
-            A bundle object represents a bundle.
-            A bundle holds items (key-value pairs) and can be used with other Tizen APIs.
-            Keys can be used to access values.
-            This class is accessed by using a constructor to create a new instance of this object.
-            A bundle instance is not guaranteed to be thread safe if the instance is modified by multiple threads.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.Bundle.#ctor">
-            <summary>
-            The bundle constructor.
-            </summary>
-            <exception cref="T:System.InvalidOperationException">Thrown when out of memory.</exception>
-            <code>
-            Tizen.Applications.Bundle bundle = new Tizen.Applications.Bundle();
-            </code>
-        </member>
-        <member name="M:Tizen.Applications.Bundle.#ctor(Tizen.Applications.SafeBundleHandle)">
-            <summary>
-            The bundle constructor.
-            </summary>
-            <param name="handle">The SafeBundleHandle instance.</param>
-            <exception cref="T:System.ArgumentNullException">Thrown when the handle is null or invalid.</exception>
-        </member>
-        <member name="P:Tizen.Applications.Bundle.Count">
-            <summary>
-            The number of items in a bundle object.
-            </summary>
-            <code>
-            Tizen.Applications.Bundle bundle = new Tizen.Applications.Bundle();
-            bundle.AddItem("string", "a_string");
-            Console.WriteLine("There are {0} items in the bundle", bundle.Count);
-            </code>
-        </member>
-        <member name="P:Tizen.Applications.Bundle.Keys">
-            <summary>
-            The keys in a bundle object.
-            </summary>
-            <code>
-            Tizen.Applications.Bundle bundle = new Tizen.Applications.Bundle();
-            bundle.AddItem("string1", "a_string1");
-            bundle.AddItem("string2", "a_string2");
-            bundle.AddItem("string3", "a_string3");
-            Console.WriteLine("The bundle contains the following keys:");
-            foreach(string key in bundle.Keys)
-            {
-                Console.WriteLine(key);
-            }
-            </code>
-        </member>
-        <member name="P:Tizen.Applications.Bundle.SafeBundleHandle">
-            <summary>
-            Gets the SafeBundleHandle instance.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.Bundle.Dispose">
-            <summary>
-            Releases any unmanaged resources used by this object.
-            </summary>
-        </member>
-        <!-- Badly formed XML comment ignored for member "M:Tizen.Applications.Bundle.Contains(System.String)" -->
-        <member name="M:Tizen.Applications.Bundle.AddItem(System.String,System.Byte[])">
-            <summary>
-            Adds an item into the bundle.
-            </summary>
-            <param name="key">The key to identify the item with. If an item with the key already exists in the bundle, this method will not succeed.</param>
-            <param name="value">The value of the item.</param>
-            <exception cref="T:System.ArgumentException">Thrown when the key already exists or when there is an invalid parameter.</exception>
-            <exception cref="T:System.ArgumentNullException">Thrown when a value is null.</exception>
-            <exception cref="T:System.InvalidOperationException">Thrown when out of memory or when the bundle instance has been disposed.</exception>
-            <code>
-            Tizen.Applications.Bundle bundle = new Tizen.Applications.Bundle();
-            byte[] byteArray = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
-            bundle.AddItem("byte_array", byteArray);
-            </code>
-        </member>
-        <member name="M:Tizen.Applications.Bundle.AddItem(System.String,System.Byte[],System.Int32,System.Int32)">
-            <summary>
-            Adds an item into the bundle.
-            </summary>
-            <param name="key">The key to identify the item with. If an item with the key already exists in the bundle, this method will not succeed.</param>
-            <param name="value">The value of the item.</param>
-            <param name="offset">The zero-based byte offset in value from which to add to the bundle.</param>
-            <param name="count">The maximum number of bytes to add to the bundle starting with offset.</param>
-            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the offset or count is out of range.</exception>
-            <exception cref="T:System.ArgumentException">Thrown when the key already exists or when there is an invalid parameter.</exception>
-            <exception cref="T:System.ArgumentNullException">Thrown when a value is null.</exception>
-            <exception cref="T:System.InvalidOperationException">Thrown when out of memory or when the bundle instance has been disposed.</exception>
-            <code>
-            Tizen.Applications.Bundle bundle = new Tizen.Applications.Bundle();
-            byte[] byteArray = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
-            bundle.AddItem("byte_array", byteArray, 2, 3);
-            </code>
-        </member>
-        <member name="M:Tizen.Applications.Bundle.AddItem(System.String,System.String)">
-            <summary>
-            Adds an item into the bundle.
-            </summary>
-            <param name="key">The key to identify the item with. If an item with the key already exists in the bundle, this method will not succeed.</param>
-            <param name="value">The value of the item.</param>
-            <exception cref="T:System.ArgumentException">Thrown when the key already exists or when there is an invalid parameter.</exception>
-            <exception cref="T:System.InvalidOperationException">Thrown when out of memory or when the bundle instance has been disposed.</exception>
-            <code>
-            Tizen.Applications.Bundle bundle = new Tizen.Applications.Bundle();
-            bundle.AddItem("string", "a_string");
-            </code>
-        </member>
-        <member name="M:Tizen.Applications.Bundle.AddItem(System.String,System.Collections.Generic.IEnumerable{System.String})">
-            <summary>
-            Adds an item into the bundle.
-            </summary>
-            <param name="key">The key to identify the item with. If an item with the key already exists in the bundle, this method will not succeed.</param>
-            <param name="value">The value of the item.</param>
-            <exception cref="T:System.ArgumentException">Thrown when the key already exists or when there is an invalid parameter.</exception>
-            <exception cref="T:System.InvalidOperationException">Thrown when out of memory or when the bundle instance has been disposed.</exception>
-            <code>
-            Tizen.Applications.Bundle bundle = new Tizen.Applications.Bundle();
-            string[] stringArray = { "a", "b", "c" };
-            bundle.AddItem("string_array", stringArray);
-            </code>
-        </member>
-        <!-- Badly formed XML comment ignored for member "M:Tizen.Applications.Bundle.GetItem(System.String)" -->
-        <!-- Badly formed XML comment ignored for member "M:Tizen.Applications.Bundle.GetItem``1(System.String)" -->
-        <member name="M:Tizen.Applications.Bundle.TryGetItem(System.String,System.Byte[]@)">
-            <summary>
-            Gets the value of a bundle item with a specified key.
-            </summary>
-            <param name="key">The key of the bundle item whose value is desired.</param>
-            <param name="value">The value of the bundle item. If the key does not exist or the type of this parameter is incorrect, it is the default value for the value parameter type.</param>
-            <returns>true if an item with the key exists and if the value is the same type as the output value parameter, false otherwise.</returns>
-            <exception cref="T:System.InvalidOperationException">Thrown when the bundle instance has been disposed.</exception>
-            <code>
-            Tizen.Applications.Bundle bundle = new Tizen.Applications.Bundle();
-            byte[] byteArray = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
-            bundle.AddItem("byte_array", byteArray);
-            byte[] aByteArray;
-            if (bundle.TryGetItem("byte_array", out aByteArray))
-            {
-                Console.WriteLine("First item in the byte array: {0}", aByteArray[0]);
-            }
-            </code>
-        </member>
-        <member name="M:Tizen.Applications.Bundle.TryGetItem(System.String,System.String@)">
-            <summary>
-            Gets the value of a bundle item with a specified key.
-            </summary>
-            <param name="key">The key of the bundle item whose value is desired.</param>
-            <param name="value">The value of the bundle item. If the key does not exist or the type of this parameter is incorrect, it is the default value for the value parameter type.</param>
-            <returns>true if an item with the key exists and if the value is the same type as the output value parameter, false otherwise.</returns>
-            <exception cref="T:System.InvalidOperationException">Thrown when the bundle instance has been disposed.</exception>
-            <code>
-            Tizen.Applications.Bundle bundle = new Tizen.Applications.Bundle();
-            bundle.AddItem("string", "a_string");
-            string aString;
-            if (bundle.TryGetItem("string", out aString))
-            {
-                Console.WriteLine(aString);
-            }
-            </code>
-        </member>
-        <!-- Badly formed XML comment ignored for member "M:Tizen.Applications.Bundle.TryGetItem(System.String,System.Collections.Generic.IEnumerable{System.String}@)" -->
-        <!-- Badly formed XML comment ignored for member "M:Tizen.Applications.Bundle.Is``1(System.String)" -->
-        <member name="M:Tizen.Applications.Bundle.RemoveItem(System.String)">
-            <summary>
-            Removes a bundle item with a specific key from a Bundle.
-            </summary>
-            <param name="key">The key of the item to delete.</param>
-            <returns>true if the item is successfully found and removed, false otherwise (even if the item is not found).</returns>
-            <exception cref="T:System.ArgumentException">Thrown when there is an invalid parameter.</exception>
-            <exception cref="T:System.InvalidOperationException">Thrown when the bundle instance has been disposed.</exception>
-            <code>
-            Tizen.Applications.Bundle bundle = new Tizen.Applications.Bundle();
-            bundle.AddItem("string", "a_string");
-            if (bundle.Contains("string"))
-            {
-                if (bundle.RemoveItem("string"))
-                {
-                    Console.WriteLine("Removed");
-                }
-            }
-            </code>
-        </member>
-        <member name="M:Tizen.Applications.Bundle.Decode(System.String)">
-            <summary>
-            Decodes an encoded bundle data.
-            </summary>
-            <param name="bundleRaw">The encoded bundle data. bundleRaw should be the returned value of Tizen.Applications.Bundle.Encode, otherwise this method will not succeed.</param>
-            <returns>Decoded Bundle object.</returns>
-            <exception cref="T:System.ArgumentException">Thrown when there is an invalid parameter.</exception>
-            <code>
-            Tizen.Applications.Bundle bundle = new Tizen.Applications.Bundle();
-            string bundleRaw = bundle.Encode();
-            Bundle data = bundle.Decode(bundleRaw);
-            </code>
-        </member>
-        <member name="M:Tizen.Applications.Bundle.Encode">
-            <summary>
-            Encodes bundle to string.
-            </summary>
-            <returns>Encoded bundle data in string.</returns>
-            <exception cref="T:System.InvalidOperationException">Thrown when out of memory or when the bundle instance has been disposed.</exception>
-            <code>
-            Tizen.Applications.Bundle bundle = new Tizen.Applications.Bundle();
-            string bundleRaw = bundle.Encode();
-            </code>
-        </member>
-        <member name="M:Tizen.Applications.Bundle.Dispose(System.Boolean)">
-            <summary>
-            Releases any unmanaged resources used by this object. Can also dispose any other disposable objects.
-            </summary>
-            <param name="disposing">If true, disposes any disposable objects. If false, does not dispose disposable objects.</param>
-        </member>
-        <member name="M:Tizen.Applications.Bundle.Finalize">
-            <summary>
-            Destructor of the bundle class.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.CoreApplication">
-            <summary>
-            This class represents an application controlled lifecycles by the backend system.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.CoreApplication.#ctor(Tizen.Applications.CoreBackend.ICoreBackend)">
-            <summary>
-            Initializes the CoreApplication class.
-            </summary>
-            <param name="backend">The backend instance implementing ICoreBacked interface.</param>
-        </member>
-        <member name="E:Tizen.Applications.CoreApplication.Created">
-            <summary>
-            Occurs when the application is launched.
-            </summary>
-        </member>
-        <member name="E:Tizen.Applications.CoreApplication.Terminated">
-            <summary>
-            Occurs when the application is about to shutdown.
-            </summary>
-        </member>
-        <member name="E:Tizen.Applications.CoreApplication.AppControlReceived">
-            <summary>
-            Occurs whenever the application receives the appcontrol message.
-            </summary>
-        </member>
-        <member name="E:Tizen.Applications.CoreApplication.LowMemory">
-            <summary>
-            Occurs when the system memory is low.
-            </summary>
-        </member>
-        <member name="E:Tizen.Applications.CoreApplication.LowBattery">
-            <summary>
-            Occurs when the system battery is low.
-            </summary>
-        </member>
-        <member name="E:Tizen.Applications.CoreApplication.LocaleChanged">
-            <summary>
-            Occurs when the system language is chagned.
-            </summary>
-        </member>
-        <member name="E:Tizen.Applications.CoreApplication.RegionFormatChanged">
-            <summary>
-            Occurs when the region format is changed.
-            </summary>
-        </member>
-        <member name="E:Tizen.Applications.CoreApplication.DeviceOrientationChanged">
-            <summary>
-            Occurs when the device orientation is changed.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.CoreApplication.Backend">
-            <summary>
-            The backend instance.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.CoreApplication.Run(System.String[])">
-            <summary>
-            Runs the application's main loop.
-            </summary>
-            <param name="args">Arguments from commandline.</param>
-        </member>
-        <member name="M:Tizen.Applications.CoreApplication.Exit">
-            <summary>
-            Exits the main loop of the application.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.CoreApplication.OnCreate">
-            <summary>
-            Overrides this method if want to handle behavior when the application is launched.
-            If base.OnCreated() is not called, the event 'Created' will not be emitted.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.CoreApplication.OnTerminate">
-            <summary>
-            Overrides this method if want to handle behavior when the application is terminated.
-            If base.OnTerminate() is not called, the event 'Terminated' will not be emitted.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.CoreApplication.OnAppControlReceived(Tizen.Applications.AppControlReceivedEventArgs)">
-            <summary>
-            Overrides this method if want to handle behavior when the application receives the appcontrol message.
-            If base.OnAppControlReceived() is not called, the event 'AppControlReceived' will not be emitted.
-            </summary>
-            <param name="e"></param>
-        </member>
-        <member name="M:Tizen.Applications.CoreApplication.OnLowMemory(Tizen.Applications.LowMemoryEventArgs)">
-            <summary>
-            Overrides this method if want to handle behavior when the system memory is low.
-            If base.OnLowMemory() is not called, the event 'LowMemory' will not be emitted.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.CoreApplication.OnLowBattery(Tizen.Applications.LowBatteryEventArgs)">
-            <summary>
-            Overrides this method if want to handle behavior when the system battery is low.
-            If base.OnLowBattery() is not called, the event 'LowBattery' will not be emitted.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.CoreApplication.OnLocaleChanged(Tizen.Applications.LocaleChangedEventArgs)">
-            <summary>
-            Overrides this method if want to handle behavior when the system language is changed.
-            If base.OnLocaleChanged() is not called, the event 'LocaleChanged' will not be emitted.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.CoreApplication.OnRegionFormatChanged(Tizen.Applications.RegionFormatChangedEventArgs)">
-            <summary>
-            Overrides this method if want to handle behavior when the region format is changed.
-            If base.OnRegionFormatChanged() is not called, the event 'RegionFormatChanged' will not be emitted.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.CoreApplication.OnDeviceOrientationChanged(Tizen.Applications.DeviceOrientationEventArgs)">
-            <summary>
-            Overrides this method if want to handle behavior when the device orientation is changed.
-            If base.OnRegionFormatChanged() is not called, the event 'RegionFormatChanged' will not be emitted.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.CoreApplication.Dispose(System.Boolean)">
-            <summary>
-            Releases any unmanaged resources used by this object. Can also dispose any other disposable objects.
-            </summary>
-            <param name="disposing">If true, disposes any disposable objects. If false, does not dispose disposable objects.</param>
-        </member>
-        <member name="T:Tizen.Applications.DeviceOrientation">
-            <summary>
-            Enumeration for the device orientation.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.DeviceOrientation.Orientation_0">
-            <summary>
-            The device orientation is 0.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.DeviceOrientation.Orientation_90">
-            <summary>
-            The device orientation is 90.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.DeviceOrientation.Orientation_180">
-            <summary>
-            The device orientation is 180.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.DeviceOrientation.Orientation_270">
-            <summary>
-            The device orientation is 270.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.DeviceOrientationEventArgs">
-            <summary>
-            The class for event arguments of the DeviceOrientationChanged.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.DeviceOrientationEventArgs.#ctor(Tizen.Applications.DeviceOrientation)">
-            <summary>
-            Initializes the DeviceOrientationEventArgs class.
-            </summary>
-            <param name="orientation">The information of the DeviceOrientation</param>
-        </member>
-        <member name="P:Tizen.Applications.DeviceOrientationEventArgs.DeviceOrientation">
-            <summary>
-            The received DeviceOrientation.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.DirectoryInfo">
-            <summary>
-            Represents directory information of the application.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.DirectoryInfo.Data">
-            <summary>
-            Gets the absolute path to the application's data directory, which is used to store private data of the application.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.DirectoryInfo.Cache">
-            <summary>
-            Gets the absolute path to the application's cache directory, which is used to store temporary data of the application.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.DirectoryInfo.Resource">
-            <summary>
-            Gets the absolute path to the application resource directory. The resource files are delivered with the application package.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.DirectoryInfo.SharedData">
-            <summary>
-            Gets the absolute path to the application's shared data directory, which is used to share data with other applications.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.DirectoryInfo.SharedResource">
-            <summary>
-            Gets the absolute path to the application's shared resource directory, which is used to share resources with other applications.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.DirectoryInfo.SharedTrusted">
-            <summary>
-            Gets the absolute path to the application's shared trusted directory, which is used to share data with a family of trusted applications.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.DirectoryInfo.ExternalData">
-            <summary>
-            Gets the absolute path to the application's external data directory, which is used to store data of the application.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.DirectoryInfo.ExternalCache">
-            <summary>
-            Gets the absolute path to the application's external cache directory, which is used to store temporary data of the application.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.DirectoryInfo.ExternalSharedData">
-            <summary>
-            Gets the absolute path to the application's external shared data directory, which is used to share data with other applications.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.DirectoryInfo.ExpansionPackageResource">
-            <summary>
-            Gets the absolute path to the application's TEP(Tizen Expansion Package) directory. The resource files are delivered with the expansion package.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.LocaleChangedEventArgs">
-            <summary>
-            The class for the argument of the LocaleChanged EventHandler
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.LocaleChangedEventArgs.#ctor(System.String)">
-            <summary>
-            Initializes LocaleChangedEventArgs class
-            </summary>
-            <param name="locale">The information of the Locale</param>
-        </member>
-        <member name="P:Tizen.Applications.LocaleChangedEventArgs.Locale">
-            <summary>
-            The property to get the intformation of the Locale
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.LowBatteryEventArgs">
-            <summary>
-            The class for the argument of the LowBattery EventHandler
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.LowBatteryEventArgs.#ctor(Tizen.Applications.LowBatteryStatus)">
-            <summary>
-            Initializes LowBatteryEventArgs class
-            </summary>
-            <param name="status">The information of the LowBatteryEventArgs</param>
-        </member>
-        <member name="P:Tizen.Applications.LowBatteryEventArgs.LowBatteryStatus">
-            <summary>
-            The property to get the intformation of the LowBatteryStatus
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.LowBatteryStatus">
-            <summary>
-            Enumeration for the low battery status.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.LowBatteryStatus.None">
-             <summary>
-            
-             </summary>
-        </member>
-        <member name="F:Tizen.Applications.LowBatteryStatus.PowerOff">
-            <summary>
-            The battery status is under 1%.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.LowBatteryStatus.CriticalLow">
-            <summary>
-            The battery status is under 5%.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.LowMemoryEventArgs">
-            <summary>
-            The class for the argument of the LowMemory EventHandler
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.LowMemoryEventArgs.#ctor(Tizen.Applications.LowMemoryStatus)">
-            <summary>
-            Initializes LowMemoryEventArgs class
-            </summary>
-            <param name="status">The information of the LowMemoryStatus</param>
-        </member>
-        <member name="P:Tizen.Applications.LowMemoryEventArgs.LowMemoryStatus">
-            <summary>
-            The property to get the intformation of the LowMemoryStatus
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.LowMemoryStatus">
-            <summary>
-            Enumeration for the low memory status.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.LowMemoryStatus.None">
-            <summary>
-            Not initialized status.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.LowMemoryStatus.Normal">
-            <summary>
-            Normal status.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.LowMemoryStatus.SoftWarning">
-            <summary>
-            Soft warning status.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.LowMemoryStatus.HardWarning">
-            <summary>
-            Hard warning status.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.ReceivedAppControl">
-            <summary>
-            Represents the received AppControl.
-            </summary>
-            <example>
-            <code>
-            public class ReceivedAppControlExample : UIApplication
-            {
-                // ...
-                protected override void OnAppControlReceived(AppControlReceivedEventArgs e)
-                {
-                    ReceivedAppControl control = e.ReceivedAppControl;
-                    if (control.Operation == AppControlOperations.Pick)
-                    {
-                        Log.Debug(LogTag, "Received AppControl is Pick");
-                    }
-                    if (control.IsReplyRequest)
-                    {
-                        AppControl replyRequest = new AppControl();
-                        replyRequest.ExtraData.Add("myKey", "I'm replying");
-                        control.ReplyToLaunchRequest(replyRequest, AppControlReplyResult.Succeeded);
-                    }
-                }
-            }
-            </code>
-            </example>
-        </member>
-        <member name="M:Tizen.Applications.ReceivedAppControl.#ctor(Tizen.Applications.SafeAppControlHandle)">
-            <summary>
-            Initializes a ReceivedAppControl class.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.ReceivedAppControl.CallerApplicationId">
-            <summary>
-            Gets the application ID of the caller from the launch request.
-            </summary>
-            <value>
-            The application ID of the caller.
-            </value>
-            <example>
-            <code>
-                protected override void OnAppControlReceived(AppControlReceivedEventArgs e)
-                {
-                    ReceivedAppControl control = e.ReceivedAppControl;
-                    string caller = control.CallerApplicationId;
-                }
-            </code>
-            </example>
-        </member>
-        <member name="P:Tizen.Applications.ReceivedAppControl.IsReplyRequest">
-            <summary>
-            Checks whether the caller is requesting a reply from the launch request.
-            </summary>
-            <value>
-            If true, this ReceivedAppControl is requested by the caller, otherwise false
-            </value>
-            <example>
-            <code>
-                protected override void OnAppControlReceived(AppControlReceivedEventArgs e)
-                {
-                    ReceivedAppControl control = e.ReceivedAppControl;
-                    bool isReply = control.IsReplyRequest;
-                }
-            </code>
-            </example>
-        </member>
-        <member name="M:Tizen.Applications.ReceivedAppControl.ReplyToLaunchRequest(Tizen.Applications.AppControl,Tizen.Applications.AppControlReplyResult)">
-            <summary>
-            Replies to the launch request sent by the caller.
-            If the caller application sends the launch request to receive the result, the callee application can return the result back to the caller.
-            </summary>
-            <param name="replyRequest">The AppControl in which the results of the callee are contained.</param>
-            <param name="result">The result code of the launch request.</param>
-            <example>
-            <code>
-                protected override void OnAppControlReceived(AppControlReceivedEventArgs e)
-                {
-                    ReceivedAppControl control = e.ReceivedAppControl;
-                    if (control.IsReplyRequest)
-                    {
-                        AppControl replyRequest = new AppControl();
-                        replyRequest.ExtraData.Add("myKey", "I'm replying");
-                        control.ReplyToLaunchRequest(replyRequest, AppControlReplyResult.Succeeded);
-                    }
-                }
-            </code>
-            </example>
-        </member>
-        <member name="T:Tizen.Applications.RecentApplicationControl">
-            <summary>
-            This class provides methods and properties to get information of the recent application.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.RecentApplicationControl.Delete">
-            <summary>
-            Deletes the application from the recent application list.
-            </summary>
-            <privlevel>platform</privlevel>
-        </member>
-        <member name="M:Tizen.Applications.RecentApplicationControl.DeleteAll">
-            <summary>
-            Deletes all recent applications from the recent application list.
-            </summary>
-            <privlevel>platform</privlevel>
-        </member>
-        <member name="T:Tizen.Applications.RecentApplicationInfo">
-            <summary>
-            This class provides methods and properties to get information of the recent application.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.RecentApplicationInfo.InstanceId">
-            <summary>
-            Gets the instance ID.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.RecentApplicationInfo.InstanceName">
-            <summary>
-            Gets the instance name.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.RecentApplicationInfo.Arg">
-            <summary>
-            Gets the arguements.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.RecentApplicationInfo.Uri">
-            <summary>
-            Gets the URI.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.RecentApplicationInfo.LaunchTime">
-            <summary>
-            Gets the launchTime.
-            </summary>
-        </member>
-        <member name="P:Tizen.Applications.RecentApplicationInfo.Controller">
-            <summary>
-            Gets the recent application controller.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.RegionFormatChangedEventArgs">
-            <summary>
-            The class for the argument of the RegionFormatChanged EventHandler
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.RegionFormatChangedEventArgs.#ctor(System.String)">
-            <summary>
-            Initializes RegionFormatChangedEventArgs class
-            </summary>
-            <param name="region">The information of the Region</param>
-        </member>
-        <member name="P:Tizen.Applications.RegionFormatChangedEventArgs.Region">
-            <summary>
-            The property to get the intformation of the Region
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.ResourceManager">
-            <summary>
-            The class for getting the resource path.
-            </summary>
-        </member>
-        <member name="T:Tizen.Applications.ResourceManager.Category">
-            <summary>
-            Enumeration for the resource category.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.ResourceManager.Category.Image">
-            <summary>
-            Image format.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.ResourceManager.Category.Layout">
-            <summary>
-            Layout format.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.ResourceManager.Category.Sound">
-            <summary>
-            Sound format.
-            </summary>
-        </member>
-        <member name="F:Tizen.Applications.ResourceManager.Category.Binary">
-            <summary>
-            Binary format.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.ResourceManager.GetPath(Tizen.Applications.ResourceManager.Category,System.String)">
-            <summary>
-            Converts resource ID to the path name.
-            </summary>
-            <param name="category">Category to search.</param>
-            <param name="id">ID to search.</param>
-            <returns>Found resource path.</returns>
-            <exception cref="T:System.InvalidOperationException">Thrown in case of failed conditions.</exception>
-        </member>
-        <member name="M:Tizen.Applications.ResourceManager.TryGetPath(Tizen.Applications.ResourceManager.Category,System.String)">
-            <summary>
-            Converts resource ID to the path name.
-            </summary>
-            <param name="category">Category to search.</param>
-            <param name="id">ID to search.</param>
-            <returns>Found resource path or null when the resource doesn't exist.</returns>
-            <exception cref="T:System.InvalidOperationException">Thrown in case of failed conditions.</exception>
-        </member>
-        <member name="T:Tizen.Applications.SafeAppControlHandle">
-            <summary>
-            Represents a wrapper class for an unmanaged AppControl handle.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.SafeAppControlHandle.#ctor">
-            <summary>
-            Initializes a new instance of the SafeAppControlHandle class.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.SafeAppControlHandle.#ctor(System.IntPtr,System.Boolean)">
-            <summary>
-            Initializes a new instance of the SafeAppControlHandle class.
-            </summary>
-            <param name="existingHandle">An IntPtr object that represents the pre-existing handle to use.</param>
-            <param name="ownsHandle">true to reliably release the handle during the finalization phase; false to prevent reliable release.</param>
-        </member>
-        <member name="P:Tizen.Applications.SafeAppControlHandle.IsInvalid">
-            <summary>
-            Gets a value that indicates whether the handle is invalid.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.SafeAppControlHandle.ReleaseHandle">
-            <summary>
-            When overridden in a derived class, executes the code required to free the handle.
-            </summary>
-            <returns>true if the handle is released successfully.</returns>
-        </member>
-        <member name="T:Tizen.Applications.SafeBundleHandle">
-            <summary>
-            Represents a wrapper class for an unmanaged bundle handle.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.SafeBundleHandle.#ctor">
-            <summary>
-            Initializes a new instance of the SafeBundleHandle class.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.SafeBundleHandle.#ctor(System.IntPtr,System.Boolean)">
-            <summary>
-            Initializes a new instance of the SafeBundleHandle class.
-            </summary>
-            <param name="existingHandle">An IntPtr object that represents the pre-existing handle to use.</param>
-            <param name="ownsHandle">true to reliably release the handle during the finalization phase; false to prevent reliable release.</param>
-        </member>
-        <member name="P:Tizen.Applications.SafeBundleHandle.IsInvalid">
-            <summary>
-            Gets a value that indicates whether the handle is invalid.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.SafeBundleHandle.ReleaseHandle">
-            <summary>
-            When overridden in a derived class, executes the code required to free the handle.
-            </summary>
-            <returns>true if the handle is released successfully.</returns>
-        </member>
-        <member name="T:Tizen.Applications.TizenSynchronizationContext">
-            <summary>
-            Provides a synchronization context for the Tizen application model.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.TizenSynchronizationContext.#ctor">
-            <summary>
-            Initializes a new instance of the TizenSynchronizationContext class.
-            </summary>
-        </member>
-        <member name="M:Tizen.Applications.TizenSynchronizationContext.Initialize">
-            <summary>
-            Initilizes a new TizenSynchronizationContext and install into the current thread.
-            </summary>
-            <remarks>
-            It is equivalent.
-            <code>
-            SetSynchronizationContext(new TizenSynchronizationContext());
-            </code>
-            </remarks>
-        </member>
-        <member name="M:Tizen.Applications.TizenSynchronizationContext.Post(System.Threading.SendOrPostCallback,System.Object)">
-            <summary>
-            Dispatches an asynchronous message to a Tizen main loop.
-            </summary>
-            <param name="d"><see cref="T:System.Threading.SendOrPostCallback"/>The SendOrPostCallback delegate to call.</param>
-            <param name="state"><see cref="T:System.Object"/>The object passed to the delegate.</param>
-            <remarks>
-            The post method starts an asynchronous request to post a message.</remarks>
-        </member>
-        <member name="M:Tizen.Applications.TizenSynchronizationContext.Send(System.Threading.SendOrPostCallback,System.Object)">
-            <summary>
-            Dispatches a synchronous message to a Tizen main loop.
-            </summary>
-            <param name="d"><see cref="T:System.Threading.SendOrPostCallback"/>The SendOrPostCallback delegate to call.</param>
-            <param name="state"><see cref="T:System.Object"/>The object passed to the delegate.</param>
-            <remarks>
-            The send method starts a synchronous request to send a message.</remarks>
-        </member>
-    </members>
-</doc>
+<?xml version="1.0"?>\r
+<doc>\r
+    <assembly>\r
+        <name>Tizen.Applications.Common</name>\r
+    </assembly>\r
+    <members>\r
+        <member name="T:Tizen.Applications.CoreBackend.DefaultCoreBackend">\r
+            <summary>\r
+            An abstract class to provide default event handlers for apps.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.CoreBackend.DefaultCoreBackend.AppEventType">\r
+            <summary>\r
+            Low level event types.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.CoreBackend.EventType">\r
+            <summary>\r
+            This class represents the type of event for backends. This class can be converted from the string type.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.CoreBackend.EventType.PreCreated">\r
+            <summary>\r
+            Pre-defined event type "PreCreated".\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.CoreBackend.EventType.Created">\r
+            <summary>\r
+            Pre-defined event type "Created".\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.CoreBackend.EventType.Terminated">\r
+            <summary>\r
+            Pre-defined event type "Terminated".\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.CoreBackend.EventType.AppControlReceived">\r
+            <summary>\r
+            Pre-defined event type "AppControlReceived".\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.CoreBackend.EventType.Resumed">\r
+            <summary>\r
+            Pre-defined event type "Resumed".\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.CoreBackend.EventType.Paused">\r
+            <summary>\r
+            Pre-defined event type "Paused".\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.CoreBackend.EventType.LowMemory">\r
+            <summary>\r
+            Pre-defined event type "LowMemory".\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.CoreBackend.EventType.LowBattery">\r
+            <summary>\r
+            Pre-defined event type "LowBattery".\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.CoreBackend.EventType.LocaleChanged">\r
+            <summary>\r
+            Pre-defined event type "LocaleChanged".\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.CoreBackend.EventType.RegionFormatChanged">\r
+            <summary>\r
+            Pre-defined event type "RegionFormatChanged".\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.CoreBackend.EventType.DeviceOrientationChanged">\r
+            <summary>\r
+            Pre-defined event type "DeviceOrientationChanged".\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.CoreBackend.EventType.#ctor(System.String)">\r
+            <summary>\r
+            Initializes the EventType class.\r
+            </summary>\r
+            <param name="name">The name of event type.</param>\r
+        </member>\r
+        <member name="M:Tizen.Applications.CoreBackend.EventType.ToString">\r
+            <summary>\r
+            Returns the name of event type.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.CoreBackend.EventType.GetHashCode">\r
+            <summary>\r
+            Returns the hash code for event type string.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.CoreBackend.EventType.Equals(System.Object)">\r
+            <summary>\r
+            Determines whether this instance and a specified object.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.CoreBackend.EventType.op_Implicit(System.String)~Tizen.Applications.CoreBackend.EventType">\r
+            <summary>\r
+            Converts a string to EventType instance.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.CoreBackend.ICoreBackend">\r
+            <summary>\r
+            An interface that represents the backend lifecycles.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.CoreBackend.ICoreBackend.AddEventHandler(Tizen.Applications.CoreBackend.EventType,System.Action)">\r
+            <summary>\r
+            Adds an event handler.\r
+            </summary>\r
+            <param name="evType">The type of event.</param>\r
+            <param name="handler">The handler method without arguments.</param>\r
+        </member>\r
+        <member name="M:Tizen.Applications.CoreBackend.ICoreBackend.AddEventHandler``1(Tizen.Applications.CoreBackend.EventType,System.Action{``0})">\r
+            <summary>\r
+            Adds an event handler.\r
+            </summary>\r
+            <typeparam name="TEventArgs">The EventArgs type used in arguments of the handler method.</typeparam>\r
+            <param name="evType">The type of event.</param>\r
+            <param name="handler">The handler method with a TEventArgs type argument.</param>\r
+        </member>\r
+        <member name="M:Tizen.Applications.CoreBackend.ICoreBackend.Run(System.String[])">\r
+            <summary>\r
+            Runs the mainloop of the backend.\r
+            </summary>\r
+            <param name="args"></param>\r
+        </member>\r
+        <member name="M:Tizen.Applications.CoreBackend.ICoreBackend.Exit">\r
+            <summary>\r
+            Exits the mainloop of the backend.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.AppControl">\r
+            <summary>\r
+            Represents the control message to exchange between applications.\r
+            </summary>\r
+            <example>\r
+            <code>\r
+            public class AppControlExample : UIApplication\r
+            {\r
+                /// ...\r
+                protected override void OnAppControlReceived(AppControlReceivedEventArgs e)\r
+                {\r
+                    AppControl appControl = new AppControl();\r
+                    appControl.ApplicationId = "org.tizen.calculator";\r
+                    AppControl.SendLaunchRequest(appControl, (launchRequest, replyRequest, result) => {\r
+                        // ...\r
+                    });\r
+                }\r
+            }\r
+            </code>\r
+            </example>\r
+        </member>\r
+        <member name="M:Tizen.Applications.AppControl.#ctor">\r
+            <summary>\r
+            Initializes the instance of the AppControl class.\r
+            </summary>\r
+            <exception cref="T:System.InvalidOperationException">Thrown when failed to create the AppControl handle.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Applications.AppControl.#ctor(System.Boolean)">\r
+            <summary>\r
+            Initializes the instance of the AppControl class with a parameter.\r
+            </summary>\r
+            <param name="enableAppStartedResultEvent">The flag value to receive an additional launch result event on the launch request.</param>\r
+            <exception cref="T:System.InvalidOperationException">Thrown when failed to create the AppControl handle.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Applications.AppControl.#ctor(Tizen.Applications.SafeAppControlHandle)">\r
+            <summary>\r
+            Initializes the instance of the AppControl class with the SafeAppControlHandle.\r
+            </summary>\r
+            <param name="handle"></param>\r
+        </member>\r
+        <member name="P:Tizen.Applications.AppControl.SafeAppControlHandle">\r
+            <summary>\r
+            Gets the SafeAppControlHandle instance.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.AppControl.Operation">\r
+            <summary>\r
+            Gets and sets the operation to be performed.\r
+            </summary>\r
+            <value>\r
+            The operation is the mandatory information for the launch request. If the operation is not specified,\r
+            AppControlOperations.Default is used for the launch request. If the operation is AppControlOperations.Default,\r
+            the package information is mandatory to explicitly launch the application.\r
+            (if the operation is null for setter, it clears the previous value.)\r
+            </value>\r
+            <example>\r
+            <code>\r
+            AppControl appControl = new AppControl();\r
+            appControl.Operation = AppControlOperations.Default;\r
+            Log.Debug(LogTag, "Operation: " + appControl.Operation);\r
+            </code>\r
+            </example>\r
+        </member>\r
+        <member name="P:Tizen.Applications.AppControl.Mime">\r
+            <summary>\r
+            Gets and sets the explicit MIME type of the data.\r
+            </summary>\r
+            <value>\r
+            (if the mime is null for setter, it clears the previous value.)\r
+            </value>\r
+            <example>\r
+            <code>\r
+            AppControl appControl = new AppControl();\r
+            appControl.Mime = "image/jpg";\r
+            Log.Debug(LogTag, "Mime: " + appControl.Mime);\r
+            </code>\r
+            </example>\r
+        </member>\r
+        <member name="P:Tizen.Applications.AppControl.Uri">\r
+            <summary>\r
+            Gets and sets the URI of the data.\r
+            </summary>\r
+            <value>\r
+            Since Tizen 2.4, if the parameter 'uri' is started with 'file://' and\r
+            it is a regular file in this application's data path, which can be obtained\r
+            by property DataPath in ApplicationInfo class,\r
+            it will be shared to the callee application.\r
+            Framework will grant a temporary permission to the callee application for this file and\r
+            revoke it when the callee application is terminated.\r
+            The callee application can just read it.\r
+            (if the uri is null for setter, it clears the previous value.)\r
+            </value>\r
+            <example>\r
+            <code>\r
+            public class AppControlExample : UIApplication\r
+            {\r
+                ...\r
+                protected override void OnAppControlReceived(AppControlReceivedEventArgs e)\r
+                {\r
+                    ...\r
+                    AppControl appControl = new AppControl();\r
+                    appContrl.Uri = this.ApplicationInfo.DataPath + "image.jpg";\r
+                    Log.Debug(LogTag, "Set Uri: " + appControl.Uri);\r
+                }\r
+            }\r
+            </code>\r
+            </example>\r
+        </member>\r
+        <member name="P:Tizen.Applications.AppControl.Category">\r
+            <summary>\r
+            Gets and sets the explicit category.\r
+            </summary>\r
+            <value>\r
+            (if the category is null for setter, it clears the previous value.)\r
+            </value>\r
+        </member>\r
+        <member name="P:Tizen.Applications.AppControl.ApplicationId">\r
+            <summary>\r
+            Gets and sets the application ID to explicitly launch.\r
+            </summary>\r
+            <value>\r
+            (if the application ID is null for setter, it clears the previous value.)\r
+            </value>\r
+            <example>\r
+            <code>\r
+            AppControl appControl = new AppControl();\r
+            appControl.ApplicationId = "org.tizen.calculator";\r
+            Log.Debug(LogTag, "ApplicationId: " + appControl.ApplicationId);\r
+            </code>\r
+            </example>\r
+        </member>\r
+        <member name="P:Tizen.Applications.AppControl.LaunchMode">\r
+            <summary>\r
+            Gets and sets the launch mode of the application.\r
+            </summary>\r
+            <value>\r
+            Although, LaunchMode were set as AppControlLaunchMode.Group, the\r
+            callee application would be launched as a single mode\r
+            if the manifest file of callee application defined the launch mode as "single".\r
+            This property can just set the preference of the caller application to launch an application.\r
+            Sub-applications, which were launched as a group mode always have own process.\r
+            Since Tizen 3.0, if launch mode is not set in the caller application control,\r
+            this property returns the AppControlLaunchMode.Single launch mode.\r
+            </value>\r
+            <example>\r
+            <code>\r
+            AppControl appControl = new AppControl();\r
+            appControl.LaunchMode = AppControlLaunchMode.Group;\r
+            </code>\r
+            </example>\r
+        </member>\r
+        <member name="P:Tizen.Applications.AppControl.ExtraData">\r
+            <summary>\r
+            Gets the collection of the extra data.\r
+            </summary>\r
+            <value>\r
+            Extra data for communication between AppControls.\r
+            </value>\r
+            <example>\r
+            <code>\r
+            AppControl appControl = new AppControl();\r
+            appControl.ExtraData.Add("key", "value");\r
+            ...\r
+            </code>\r
+            </example>\r
+        </member>\r
+        <!-- "M:Tizen.Applications.AppControl.GetMatchedApplicationIds(Tizen.Applications.AppControl)" 멤버에 대해 잘못된 형식의 XML 주석은 무시됩니다. -->\r
+        <member name="M:Tizen.Applications.AppControl.SendLaunchRequest(Tizen.Applications.AppControl)">\r
+            <summary>\r
+            Sends the launch request.\r
+            </summary>\r
+            <remarks>\r
+            The operation is mandatory information for the launch request.\r
+            If the operation is not specified, AppControlOperations.Default is used by default.\r
+            If the operation is AppControlOperations.Default, the application ID is mandatory to explicitly launch the application. \n\r
+            Since Tizen 2.4, the launch request of the service application over out of packages is restricted by the platform.\r
+            Also, implicit launch requests are NOT delivered to service applications since 2.4.\r
+            To launch a service application, an explicit launch request with the application ID given by property ApplicationId MUST be sent.\r
+            </remarks>\r
+            <param name="launchRequest">The AppControl.</param>\r
+            <exception cref="T:System.ArgumentNullException">Thrown when failed because of a null argument.</exception>\r
+            <exception cref="T:System.InvalidOperationException">Thrown when failed because of an invalid operation.</exception>\r
+            <exception cref="T:System.TimeoutException">Thrown when failed because of timeout.</exception>\r
+            <privilege>http://tizen.org/privilege/appmanager.launch</privilege>\r
+            <example>\r
+            <code>\r
+            AppControl appControl = new AppControl();\r
+            appControl.ApplicationId = "org.tizen.calculator";\r
+            AppControl.SendLaunchRequest(appControl);\r
+            </code>\r
+            </example>\r
+        </member>\r
+        <member name="M:Tizen.Applications.AppControl.SendLaunchRequest(Tizen.Applications.AppControl,Tizen.Applications.AppControlReplyCallback)">\r
+            <summary>\r
+            Sends the launch request.\r
+            </summary>\r
+            <remarks>\r
+            The operation is mandatory information for the launch request.\r
+            If the operation is not specified, AppControlOperations.Default is used by default.\r
+            If the operation is AppControlOperations.Default, the application ID is mandatory to explicitly launch the application. \n\r
+            Since Tizen 2.4, the launch request of the service application over out of packages is restricted by the platform.\r
+            Also, implicit launch requests are NOT delivered to service applications since 2.4.\r
+            To launch a service application, an explicit launch request with the application ID given by property ApplicationId MUST be sent.\r
+            </remarks>\r
+            <param name="launchRequest">The AppControl.</param>\r
+            <param name="replyAfterLaunching">The callback function to be called when the reply is delivered.</param>\r
+            <exception cref="T:System.ArgumentException">Thrown when failed because of the argument is invalid.</exception>\r
+            <exception cref="T:System.InvalidOperationException">Thrown when failed because of an invalid operation.</exception>\r
+            <exception cref="T:System.TimeoutException">Thrown when failed because of timeout.</exception>\r
+            <privilege>http://tizen.org/privilege/appmanager.launch</privilege>\r
+            <example>\r
+            <code>\r
+            AppControl appControl = new AppControl();\r
+            appControl.ApplicationId = "org.tizen.calculator";\r
+            AppControl.SendLaunchRequest(appControl, (launchRequest, replyRequest, result) => {\r
+                // ...\r
+            });\r
+            </code>\r
+            </example>\r
+        </member>\r
+        <member name="M:Tizen.Applications.AppControl.SendTerminateRequest(Tizen.Applications.AppControl)">\r
+            <summary>\r
+            Sends the terminate request to the application that is launched by AppControl.\r
+            </summary>\r
+            <remarks>\r
+            You are not allowed to terminate other general applications using this API.\r
+            This API can be used to terminate sub-applications, which were launched as a group mode by the caller application.\r
+            Once the callee application is being terminated by this API,\r
+            other applications, which were launched by the callee application as a group mode will be terminated as well.\r
+            </remarks>\r
+            <param name="terminateRequest">The AppControl.</param>\r
+            <exception cref="T:System.ArgumentException">Thrown when failed because of the argument is invalid.</exception>\r
+            <exception cref="T:System.InvalidOperationException">Thrown when failed because of an invalid operation.</exception>\r
+            <exception cref="T:System.TimeoutException">Thrown when failed because of timeout.</exception>\r
+            <example>\r
+            <code>\r
+            AppControl terminateRequest = new AppControl();\r
+            terminateRequest.ApplicationId = "org.tizen.calculator";\r
+            AppControl.SendTerminateRequest(terminateRequest);\r
+            </code>\r
+            </example>\r
+        </member>\r
+        <member name="T:Tizen.Applications.AppControl.ExtraDataCollection">\r
+            <summary>\r
+            Class for extra data.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.AppControl.ExtraDataCollection.Add(System.String,System.String)">\r
+            <summary>\r
+            Adds extra data.\r
+            </summary>\r
+            <remarks>\r
+            The function replaces any existing value for the given key.\r
+            </remarks>\r
+            <param name="key">The name of the extra data.</param>\r
+            <param name="value">The value associated with the given key.</param>\r
+            <exception cref="T:System.ArgumentNullException">Thrown when a key or a value is a zero-length string.</exception>\r
+            <exception cref="T:System.ArgumentException">Thrown when the application tries to use the same key with the system-defined key.</exception>\r
+            <example>\r
+            <code>\r
+            AppControl appControl = new AppControl();\r
+            appControl.ExtraData.Add("myKey", "myValue");\r
+            </code>\r
+            </example>\r
+        </member>\r
+        <member name="M:Tizen.Applications.AppControl.ExtraDataCollection.Add(System.String,System.Collections.Generic.IEnumerable{System.String})">\r
+            <summary>\r
+            Adds extra data.\r
+            </summary>\r
+            <remarks>\r
+            The function replaces any existing value for the given key.\r
+            </remarks>\r
+            <param name="key">The name of the extra data.</param>\r
+            <param name="value">The value associated with the given key.</param>\r
+            <exception cref="T:System.ArgumentNullException">Thrown when key or value is a zero-length string.</exception>\r
+            <exception cref="T:System.ArgumentException">Thrown when the application tries to use the same key with the system-defined key.</exception>\r
+            <example>\r
+            <code>\r
+            AppControl appControl = new AppControl();\r
+            string[] myValues = new string[] { "first", "second", "third" };\r
+            appControl.ExtraData.Add("myKey", myValues);\r
+            </code>\r
+            </example>\r
+        </member>\r
+        <!-- "M:Tizen.Applications.AppControl.ExtraDataCollection.Get``1(System.String)" 멤버에 대해 잘못된 형식의 XML 주석은 무시됩니다. -->\r
+        <member name="M:Tizen.Applications.AppControl.ExtraDataCollection.Get(System.String)">\r
+            <summary>\r
+            Gets the extra data.\r
+            </summary>\r
+            <param name="key">The name of extra data.</param>\r
+            <returns>The value associated with the given key.</returns>\r
+            <exception cref="T:System.ArgumentNullException">Thrown when the key is an invalid parameter.</exception>\r
+            <exception cref="T:System.Collections.Generic.KeyNotFoundException">Thrown when the key is not found.</exception>\r
+            <exception cref="T:System.ArgumentException">Thrown when the key is rejected.</exception>\r
+            <example>\r
+            <code>\r
+            AppControl appControl = new AppControl();\r
+            string myValue = appControl.ExtraData.Get("myKey") as string;\r
+            if (myValue != null)\r
+            {\r
+                // ...\r
+            }\r
+            </code>\r
+            </example>\r
+        </member>\r
+        <!-- "M:Tizen.Applications.AppControl.ExtraDataCollection.GetKeys" 멤버에 대해 잘못된 형식의 XML 주석은 무시됩니다. -->\r
+        <member name="M:Tizen.Applications.AppControl.ExtraDataCollection.TryGet(System.String,System.String@)">\r
+            <summary>\r
+            Tries getting the extra data.\r
+            </summary>\r
+            <param name="key">The name of extra data.</param>\r
+            <param name="value">The value associated with the given key.</param>\r
+            <returns>The result whether getting the value is done.</returns>\r
+            <exception cref="T:System.ArgumentNullException">Thrown when the key is an invalid parameter.</exception>\r
+            <exception cref="T:System.Collections.Generic.KeyNotFoundException">Thrown when the key is not found.</exception>\r
+            <exception cref="T:System.ArgumentException">Thrown when the key is rejected.</exception>\r
+            <example>\r
+            <code>\r
+            AppControl appControl = new AppControl();\r
+            string myValue = string.Empty;\r
+            bool result = appControl.ExtraData.TryGet("myKey", out myValue);\r
+            if (result != null)\r
+            {\r
+                // ...\r
+            }\r
+            </code>\r
+            </example>\r
+        </member>\r
+        <!-- "M:Tizen.Applications.AppControl.ExtraDataCollection.TryGet(System.String,System.Collections.Generic.IEnumerable{System.String}@)" 멤버에 대해 잘못된 형식의 XML 주석은 무시됩니다. -->\r
+        <member name="M:Tizen.Applications.AppControl.ExtraDataCollection.Remove(System.String)">\r
+            <summary>\r
+            Removes the extra data.\r
+            </summary>\r
+            <param name="key">The name of the extra data.</param>\r
+            <exception cref="T:System.ArgumentNullException">Thrown when the key is a zero-length string.</exception>\r
+            <exception cref="T:System.Collections.Generic.KeyNotFoundException">Thrown when the key is not found.</exception>\r
+            <exception cref="T:System.ArgumentException">Thrown when the key is rejected.</exception>\r
+            <example>\r
+            <code>\r
+            AppControl appControl = new AppControl();\r
+            appControl.ExtraData.Remove("myKey");\r
+            </code>\r
+            </example>\r
+        </member>\r
+        <member name="M:Tizen.Applications.AppControl.ExtraDataCollection.Count">\r
+            <summary>\r
+            Counts keys in the extra data.\r
+            </summary>\r
+            <returns>The number of counting keys.</returns>\r
+            <exception cref="T:System.InvalidOperationException">Thrown when the key is an invalid parameter.</exception>\r
+            <example>\r
+            <code>\r
+            AppControl appControl = new AppControl();\r
+            int numberOfKeys = appControl.ExtraData.Count();\r
+            </code>\r
+            </example>\r
+        </member>\r
+        <member name="M:Tizen.Applications.AppControl.ExtraDataCollection.IsCollection(System.String)">\r
+            <summary>\r
+            Checks whether the extra data associated with the given key is of the collection data type.\r
+            </summary>\r
+            <param name="key">The name of the extra data.</param>\r
+            <returns>If true, the extra data is of the array data type, otherwise false.</returns>\r
+            <exception cref="T:System.ArgumentNullException">Thrown when the key is a zero-length string.</exception>\r
+            <exception cref="T:System.InvalidOperationException">Thrown when failed to check the key.</exception>\r
+            <example>\r
+            <code>\r
+            AppControl appControl = new AppControl();\r
+            bool result = appControl.ExtraData.IsCollection("myKey");\r
+            </code>\r
+            </example>\r
+        </member>\r
+        <member name="T:Tizen.Applications.AppControlData">\r
+            <summary>\r
+            Data of the AppControl.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlData.Subject">\r
+            <summary>\r
+            Subject.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlData.To">\r
+            <summary>\r
+            Recipients.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlData.Cc">\r
+            <summary>\r
+            E-mail addresses that should be carbon copied.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlData.Bcc">\r
+            <summary>\r
+            E-mail addresses that should be blind carbon copied.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlData.Text">\r
+            <summary>\r
+            Text.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlData.Title">\r
+            <summary>\r
+            Title.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlData.Selected">\r
+            <summary>\r
+            Selected items.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlData.Path">\r
+            <summary>\r
+            Paths of items.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlData.SectionMode">\r
+            <summary>\r
+            Selection mode ("single" or "multiple").\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlData.AllDay">\r
+            <summary>\r
+            All-day mode of the event ("true" or "false").\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlData.StartTime">\r
+            <summary>\r
+            Start time of the event (format: YYYY-MM-DD HH:MM:SS).\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlData.Endtime">\r
+            <summary>\r
+            End time of the event (format: YYYY-MM-DD HH:MM:SS).\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlData.Email">\r
+            <summary>\r
+            E-mail addressed.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlData.Phone">\r
+            <summary>\r
+            Phone numbers.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlData.Url">\r
+            <summary>\r
+            URLs.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlData.Ids">\r
+            <summary>\r
+            IDs.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlData.Type">\r
+            <summary>\r
+            Type.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlData.TotalCount">\r
+            <summary>\r
+            Total count.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlData.TotalSize">\r
+            <summary>\r
+            Total size (unit : bytes).\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlData.Name">\r
+            <summary>\r
+            Name.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlData.Location">\r
+            <summary>\r
+            Location.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlData.InputType">\r
+            <summary>\r
+            Select the type of input method.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlData.InputDefaultText">\r
+            <summary>\r
+            Send the pre inputted text, such as "http://" in web.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlData.InputGuideText">\r
+            <summary>\r
+            Send guide text to show to the user, such as "Input user name".\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlData.InputPredictionHint">\r
+            <summary>\r
+            Send text to receive answer result from smart reply.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.AppControlLaunchMode">\r
+            <summary>\r
+            Enumeration for the application control launch mode.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlLaunchMode.Single">\r
+            <summary>\r
+            Prefer to launch an application as a single mode.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlLaunchMode.Group">\r
+            <summary>\r
+            Prefer to launch an application as a group mode.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.AppControlOperations">\r
+            <summary>\r
+            Operations of the AppControl.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlOperations.Main">\r
+            <summary>\r
+            An explicit launch for a homescreen application.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlOperations.Default">\r
+            <summary>\r
+            An explicit launch for an application that excludes a homescreen application.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlOperations.Edit">\r
+            <summary>\r
+            Provides an editable access to the given data.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlOperations.View">\r
+            <summary>\r
+            Displays the data.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlOperations.Pick">\r
+            <summary>\r
+            Picks items.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlOperations.CreateContent">\r
+            <summary>\r
+            Creates contents.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlOperations.Call">\r
+            <summary>\r
+            Performs a call to someone.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlOperations.Send">\r
+            <summary>\r
+            Delivers some data to someone else.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlOperations.SendText">\r
+            <summary>\r
+            Delivers text data to someone else.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlOperations.Share">\r
+            <summary>\r
+            Shares an item with someone else.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlOperations.MultiShare">\r
+            <summary>\r
+            Shares multiple items with someone else.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlOperations.ShareText">\r
+            <summary>\r
+            Shares text data with someone else.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlOperations.Dial">\r
+            <summary>\r
+            Dials a number. This shows an UI with the number to be dialed, allowing the user to explicitly initiate the call.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlOperations.Search">\r
+            <summary>\r
+            Performs a search.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlOperations.Download">\r
+            <summary>\r
+            Downloads items.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlOperations.Print">\r
+            <summary>\r
+            Prints contents.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlOperations.Compose">\r
+            <summary>\r
+            Composes a message.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlOperations.LaunchOnEvent">\r
+            <summary>\r
+            Can be launched by interested System-Event.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlOperations.Add">\r
+            <summary>\r
+            Adds an item.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlOperations.ImageCapture">\r
+            <summary>\r
+            Captures images by camera applications.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlOperations.VideoCapture">\r
+            <summary>\r
+            Captures videos by camera applications.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlOperations.Setting">\r
+            <summary>\r
+            Shows system settings.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlOperations.SettingBluetoothEnable">\r
+            <summary>\r
+            Shows settings to enable Bluetooth.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlOperations.SettingBluetoothVisibility">\r
+            <summary>\r
+            Shows settings to configure the Bluetooth visibility.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlOperations.SettingLocation">\r
+            <summary>\r
+            Shows settings to allow configuration of current location sources.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlOperations.SettingNfc">\r
+            <summary>\r
+            Shows NFC settings.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlOperations.SettingWifi">\r
+            <summary>\r
+            Shows settings to allow configuration of Wi-Fi.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.AppControlReceivedEventArgs">\r
+            <summary>\r
+            Arguments for the event that raised when the application receives the AppControl.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.AppControlReceivedEventArgs.#ctor(Tizen.Applications.ReceivedAppControl)">\r
+            <summary>\r
+            Initializes the AppControlReceivedEventArgs class.\r
+            </summary>\r
+            <param name="appControl"></param>\r
+        </member>\r
+        <member name="P:Tizen.Applications.AppControlReceivedEventArgs.ReceivedAppControl">\r
+            <summary>\r
+            The received AppControl.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.AppControlReplyCallback">\r
+            <summary>\r
+            Reply callback for the launch request\r
+            </summary>\r
+            <param name="launchRequest">The AppControl of the launch request that has been sent</param>\r
+            <param name="replyRequest">The AppControl in which the results of the callee are contained</param>\r
+            <param name="result">The result of the launch request</param>\r
+        </member>\r
+        <member name="T:Tizen.Applications.AppControlReplyResult">\r
+            <summary>\r
+            Enumeration for the application control result.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlReplyResult.AppStarted">\r
+            <summary>\r
+            The callee application launched actually.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlReplyResult.Succeeded">\r
+            <summary>\r
+            The operation succeeded.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlReplyResult.Failed">\r
+            <summary>\r
+            The operation failed by the callee.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.AppControlReplyResult.Canceled">\r
+            <summary>\r
+            The operation canceled by the platform.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.Application">\r
+            <summary>\r
+            The class that represents a Tizen application.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.Application.Current">\r
+            <summary>\r
+            Gets the instance of the current application.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.Application.DirectoryInfo">\r
+            <summary>\r
+            Gets the class representing directory information of the current application.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.Application.ApplicationInfo">\r
+            <summary>\r
+            Gets the class representing information of the current application.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.Application.Run(System.String[])">\r
+            <summary>\r
+            Runs the application's main loop.\r
+            </summary>\r
+            <param name="args">Arguments from commandline.</param>\r
+        </member>\r
+        <member name="M:Tizen.Applications.Application.Exit">\r
+            <summary>\r
+            Exits the main loop of the application.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.Application.Dispose(System.Boolean)">\r
+            <summary>\r
+            Releases any unmanaged resources used by this object. Can also dispose any other disposable objects.\r
+            </summary>\r
+            <param name="disposing">If true, disposes any disposable objects. If false, does not dispose disposable objects.</param>\r
+        </member>\r
+        <member name="M:Tizen.Applications.Application.Finalize">\r
+            <summary>\r
+            Finalizer of the application class.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.Application.Dispose">\r
+            <summary>\r
+            Releases all resources used by the application class.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.ApplicationDisabledEventArgs">\r
+            <summary>\r
+            Arguments for the event raised when the application is disabled.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ApplicationDisabledEventArgs.ApplicationId">\r
+            <summary>\r
+            The ID of the application.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ApplicationDisabledEventArgs.EventState">\r
+            <summary>\r
+            The event state of the application.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.ApplicationEnabledEventArgs">\r
+            <summary>\r
+            Arguments for the event raised when the application is enabled.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ApplicationEnabledEventArgs.ApplicationId">\r
+            <summary>\r
+            The ID of the application.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ApplicationEnabledEventArgs.EventState">\r
+            <summary>\r
+            The event state of the application.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.ApplicationEventState">\r
+            <summary>\r
+            Enumeration for the application event state.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.ApplicationEventState.Started">\r
+            <summary>\r
+            Processing started.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.ApplicationEventState.Completed">\r
+            <summary>\r
+            Processing completed.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.ApplicationEventState.Failed">\r
+            <summary>\r
+            Processing failed.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.ApplicationInfo">\r
+            <summary>\r
+            This class provides methods and properties to get information of the application.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.ApplicationInfo.#ctor(System.String)">\r
+            <summary>\r
+            A constructor of ApplicationInfo that takes the application ID.\r
+            </summary>\r
+            <param name="applicationId">Application ID.</param>\r
+        </member>\r
+        <member name="M:Tizen.Applications.ApplicationInfo.Finalize">\r
+            <summary>\r
+            Destructor of the class.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ApplicationInfo.ApplicationId">\r
+            <summary>\r
+            Gets the application ID.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ApplicationInfo.PackageId">\r
+            <summary>\r
+            Gets the package ID of the application.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ApplicationInfo.Label">\r
+            <summary>\r
+            Gets the label of the application.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ApplicationInfo.ExecutablePath">\r
+            <summary>\r
+            Gets the executable path of the application.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ApplicationInfo.IconPath">\r
+            <summary>\r
+            Gets the absolute path to the icon image.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ApplicationInfo.ApplicationType">\r
+            <summary>\r
+            Gets the application type name.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ApplicationInfo.Metadata">\r
+            <summary>\r
+            Gets the application's metadata.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ApplicationInfo.IsNoDisplay">\r
+            <summary>\r
+            Checks whether the application information is nodisplay. If the application icon is not displayed on the menu screen, true; otherwise, false.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ApplicationInfo.IsOnBoot">\r
+            <summary>\r
+            Checks whether the application is launched on booting time. If the application automatically starts on boot, true; otherwise, false.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ApplicationInfo.IsPreload">\r
+            <summary>\r
+            Checks whether the application is preloaded. If the application is preloaded, true; otherwise, false.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ApplicationInfo.SharedDataPath">\r
+            <summary>\r
+            Gets the shared data path.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ApplicationInfo.SharedResourcePath">\r
+            <summary>\r
+            Gets the shared resource path.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ApplicationInfo.SharedTrustedPath">\r
+            <summary>\r
+            Gets the shared trust path.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ApplicationInfo.ExternalSharedDataPath">\r
+            <summary>\r
+            Gets the external shared data path.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.ApplicationInfo.GetLocalizedLabel(System.String)">\r
+            <summary>\r
+            Gets the localized label of the application for the given locale.\r
+            </summary>\r
+            <param name="locale">Locale.</param>\r
+        </member>\r
+        <member name="M:Tizen.Applications.ApplicationInfo.Dispose">\r
+            <summary>\r
+            Releases all resources used by the ApplicationInfo class.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.ApplicationInfoFilter">\r
+            <summary>\r
+            This class is a parameter of the GetInstalledApplicationsAsync method.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.ApplicationInfoFilter.#ctor">\r
+             <summary>\r
+            \r
+             </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.ApplicationInfoFilter.Keys">\r
+            <summary>\r
+            This class is a possible key to use in the InstalledApplicationFilter.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.ApplicationInfoFilter.Keys.Id">\r
+             <summary>\r
+            \r
+             </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.ApplicationInfoFilter.Keys.Type">\r
+             <summary>\r
+            \r
+             </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.ApplicationInfoFilter.Keys.Category">\r
+             <summary>\r
+            \r
+             </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.ApplicationInfoFilter.Keys.NoDisplay">\r
+             <summary>\r
+            \r
+             </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.ApplicationInfoFilter.Keys.TaskManage">\r
+             <summary>\r
+            \r
+             </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ApplicationInfoFilter.Filter">\r
+             <summary>\r
+            \r
+             </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.ApplicationInfoMetadataFilter">\r
+            <summary>\r
+            This class is a parameter of the GetInstalledApplicationsAsync method.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.ApplicationLaunchedEventArgs">\r
+            <summary>\r
+            Arguments for the event raised when the application is launched.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ApplicationLaunchedEventArgs.ApplicationRunningContext">\r
+            <summary>\r
+            The information of the application.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.ApplicationManager">\r
+            <summary>\r
+            This class has the methods and events of the ApplicationManager.\r
+            </summary>\r
+        </member>\r
+        <member name="E:Tizen.Applications.ApplicationManager.ApplicationEnabled">\r
+            <summary>\r
+            Occurs whenever the installed application is enabled.\r
+            </summary>\r
+        </member>\r
+        <member name="E:Tizen.Applications.ApplicationManager.ApplicationDisabled">\r
+            <summary>\r
+            Occurs whenever the installed application is disabled.\r
+            </summary>\r
+        </member>\r
+        <member name="E:Tizen.Applications.ApplicationManager.ApplicationLaunched">\r
+            <summary>\r
+            Occurs whenever the installed applications get launched.\r
+            </summary>\r
+        </member>\r
+        <member name="E:Tizen.Applications.ApplicationManager.ApplicationTerminated">\r
+            <summary>\r
+            Occurs whenever the installed applications get terminated.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.ApplicationManager.GetInstalledApplicationsAsync">\r
+            <summary>\r
+            Gets the information of the installed applications asynchronously.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.ApplicationManager.GetInstalledApplicationsAsync(Tizen.Applications.ApplicationInfoFilter)">\r
+            <summary>\r
+            Gets the information of the installed applications with the ApplicationInfoFilter asynchronously.\r
+            </summary>\r
+            <param name="filter">Key-value pairs for filtering.</param>\r
+        </member>\r
+        <member name="M:Tizen.Applications.ApplicationManager.GetInstalledApplicationsAsync(Tizen.Applications.ApplicationInfoMetadataFilter)">\r
+            <summary>\r
+            Gets the information of the installed applications with the ApplicationInfoMetadataFilter asynchronously.\r
+            </summary>\r
+            <param name="filter">Key-value pairs for filtering.</param>\r
+        </member>\r
+        <member name="M:Tizen.Applications.ApplicationManager.GetRunningApplicationsAsync">\r
+            <summary>\r
+            Gets the information of the running applications asynchronously.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.ApplicationManager.GetAllRunningApplicationsAsync">\r
+            <summary>\r
+            Gets the information of the running applications including subapp asynchronously.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.ApplicationManager.GetInstalledApplication(System.String)">\r
+            <summary>\r
+            Gets the information of the specified application with the application ID.\r
+            </summary>\r
+            <param name="applicationId">Application ID.</param>\r
+        </member>\r
+        <member name="M:Tizen.Applications.ApplicationManager.IsRunning(System.String)">\r
+            <summary>\r
+            Returns if the specified application is running or not.\r
+            </summary>\r
+            <param name="applicationId">The application ID.</param>\r
+            <returns>Returns true if the given application is running, otherwise false.</returns>\r
+            <exception cref="T:System.ArgumentException">Thrown when the given parameter is invalid.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Applications.ApplicationManager.GetRecentApplications">\r
+            <summary>\r
+            Gets the information of the recent applications.\r
+            </summary>\r
+            <returns>Returns a dictionary containing all the recent application info.</returns>\r
+            <exception cref="T:System.InvalidOperationException">Thrown when failed because of an invalid operation.</exception>\r
+        </member>\r
+        <member name="T:Tizen.Applications.ApplicationRunningContext">\r
+            <summary>\r
+            This class provides methods and properties to get information of the application.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.ApplicationRunningContext.#ctor(System.String)">\r
+            <summary>\r
+            A constructor of ApplicationRunningContext that takes the application ID.\r
+            </summary>\r
+            <param name="applicationId">Application ID.</param>\r
+            <exception cref="T:System.ArgumentException">Thrown when failed because of an invalid argument.</exception>\r
+            <exception cref="T:System.InvalidOperationException">Thrown when failed because of the "application not exist" error or the system error.</exception>\r
+            <exception cref="T:System.OutOfMemoryException">Thrown when failed because of out of memory.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Applications.ApplicationRunningContext.#ctor(System.String,System.String)">\r
+            <summary>\r
+            A constructor of ApplicationRunningContext that takes the application id.\r
+            </summary>\r
+            <param name="applicationId">application id.</param>\r
+            <param name="instanceId">instance id.</param>\r
+            <exception cref="T:System.ArgumentException">Thrown when failed of invalid argument.</exception>\r
+            <exception cref="T:System.InvalidOperationException">Thrown when failed because of application not exist error or system error.</exception>\r
+            <exception cref="T:System.OutOfMemoryException">Thrown when failed because of out of memory.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Applications.ApplicationRunningContext.Finalize">\r
+            <summary>\r
+            Destructor of the class.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.ApplicationRunningContext.AppState">\r
+            <summary>\r
+            Enumeration for the application state.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.ApplicationRunningContext.AppState.Undefined">\r
+            <summary>\r
+            The undefined state.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.ApplicationRunningContext.AppState.Foreground">\r
+            <summary>\r
+            The UI application is running in the foreground.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.ApplicationRunningContext.AppState.Background">\r
+            <summary>\r
+            The UI application is running in the background.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.ApplicationRunningContext.AppState.Service">\r
+            <summary>\r
+            The service application is running.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.ApplicationRunningContext.AppState.Terminated">\r
+            <summary>\r
+            The application is terminated.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ApplicationRunningContext.ApplicationId">\r
+            <summary>\r
+            Gets the application ID.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ApplicationRunningContext.PackageId">\r
+            <summary>\r
+            Gets the package ID of the application.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ApplicationRunningContext.ProcessId">\r
+            <summary>\r
+            Gets the application's process ID.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ApplicationRunningContext.State">\r
+            <summary>\r
+            Gets the state of the application.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ApplicationRunningContext.IsSubApp">\r
+            <summary>\r
+            Gets whether the application is sub application of the application group.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.ApplicationRunningContext.Terminate">\r
+            <summary>\r
+            Terminates the application.\r
+            </summary>\r
+            <exception cref="T:System.ArgumentException">Thrown when failed of invalid argument.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">Thrown when failed because of permission denied.</exception>\r
+            <exception cref="T:System.InvalidOperationException">Thrown when failed because of system error.</exception>\r
+            <privilege>http://tizen.org/privilege/appmanager.kill</privilege>\r
+        </member>\r
+        <member name="M:Tizen.Applications.ApplicationRunningContext.Resume">\r
+            <summary>\r
+            Resumes the running application.\r
+            </summary>\r
+            <exception cref="T:System.ArgumentException">Thrown when failed of invalid argument.</exception>\r
+            <exception cref="T:System.UnauthorizedAccessException">Thrown when failed because of permission denied.</exception>\r
+            <exception cref="T:System.InvalidOperationException">Thrown when failed because of system error.</exception>\r
+            <privilege>http://tizen.org/privilege/appmanager.launch</privilege>\r
+        </member>\r
+        <member name="M:Tizen.Applications.ApplicationRunningContext.Dispose">\r
+            <summary>\r
+            Releases all resources used by the ApplicationRunningContext class.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.ApplicationTerminatedEventArgs">\r
+            <summary>\r
+            Arguments for the event raised when the application is terminated.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ApplicationTerminatedEventArgs.ApplicationRunningContext">\r
+            <summary>\r
+            The information of the application.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.ApplicationType">\r
+            <summary>\r
+            Enumeration for the applications type.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.ApplicationType.All">\r
+            <summary>\r
+            All applications.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.ApplicationType.Ui">\r
+            <summary>\r
+            UI applications.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.ApplicationType.Service">\r
+            <summary>\r
+            Service applications.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.Bundle">\r
+            <summary>\r
+            A bundle object represents a bundle.\r
+            A bundle holds items (key-value pairs) and can be used with other Tizen APIs.\r
+            Keys can be used to access values.\r
+            This class is accessed by using a constructor to create a new instance of this object.\r
+            A bundle instance is not guaranteed to be thread safe if the instance is modified by multiple threads.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.Bundle.#ctor">\r
+            <summary>\r
+            The bundle constructor.\r
+            </summary>\r
+            <exception cref="T:System.InvalidOperationException">Thrown when out of memory.</exception>\r
+            <code>\r
+            Tizen.Applications.Bundle bundle = new Tizen.Applications.Bundle();\r
+            </code>\r
+        </member>\r
+        <member name="M:Tizen.Applications.Bundle.#ctor(Tizen.Applications.SafeBundleHandle)">\r
+            <summary>\r
+            The bundle constructor.\r
+            </summary>\r
+            <param name="handle">The SafeBundleHandle instance.</param>\r
+            <exception cref="T:System.ArgumentNullException">Thrown when the handle is null or invalid.</exception>\r
+        </member>\r
+        <member name="P:Tizen.Applications.Bundle.Count">\r
+            <summary>\r
+            The number of items in a bundle object.\r
+            </summary>\r
+            <code>\r
+            Tizen.Applications.Bundle bundle = new Tizen.Applications.Bundle();\r
+            bundle.AddItem("string", "a_string");\r
+            Console.WriteLine("There are {0} items in the bundle", bundle.Count);\r
+            </code>\r
+        </member>\r
+        <member name="P:Tizen.Applications.Bundle.Keys">\r
+            <summary>\r
+            The keys in a bundle object.\r
+            </summary>\r
+            <code>\r
+            Tizen.Applications.Bundle bundle = new Tizen.Applications.Bundle();\r
+            bundle.AddItem("string1", "a_string1");\r
+            bundle.AddItem("string2", "a_string2");\r
+            bundle.AddItem("string3", "a_string3");\r
+            Console.WriteLine("The bundle contains the following keys:");\r
+            foreach(string key in bundle.Keys)\r
+            {\r
+                Console.WriteLine(key);\r
+            }\r
+            </code>\r
+        </member>\r
+        <member name="P:Tizen.Applications.Bundle.SafeBundleHandle">\r
+            <summary>\r
+            Gets the SafeBundleHandle instance.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.Bundle.Dispose">\r
+            <summary>\r
+            Releases any unmanaged resources used by this object.\r
+            </summary>\r
+        </member>\r
+        <!-- "M:Tizen.Applications.Bundle.Contains(System.String)" 멤버에 대해 잘못된 형식의 XML 주석은 무시됩니다. -->\r
+        <member name="M:Tizen.Applications.Bundle.AddItem(System.String,System.Byte[])">\r
+            <summary>\r
+            Adds an item into the bundle.\r
+            </summary>\r
+            <param name="key">The key to identify the item with. If an item with the key already exists in the bundle, this method will not succeed.</param>\r
+            <param name="value">The value of the item.</param>\r
+            <exception cref="T:System.ArgumentException">Thrown when the key already exists or when there is an invalid parameter.</exception>\r
+            <exception cref="T:System.ArgumentNullException">Thrown when a value is null.</exception>\r
+            <exception cref="T:System.InvalidOperationException">Thrown when out of memory or when the bundle instance has been disposed.</exception>\r
+            <code>\r
+            Tizen.Applications.Bundle bundle = new Tizen.Applications.Bundle();\r
+            byte[] byteArray = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };\r
+            bundle.AddItem("byte_array", byteArray);\r
+            </code>\r
+        </member>\r
+        <member name="M:Tizen.Applications.Bundle.AddItem(System.String,System.Byte[],System.Int32,System.Int32)">\r
+            <summary>\r
+            Adds an item into the bundle.\r
+            </summary>\r
+            <param name="key">The key to identify the item with. If an item with the key already exists in the bundle, this method will not succeed.</param>\r
+            <param name="value">The value of the item.</param>\r
+            <param name="offset">The zero-based byte offset in value from which to add to the bundle.</param>\r
+            <param name="count">The maximum number of bytes to add to the bundle starting with offset.</param>\r
+            <exception cref="T:System.ArgumentOutOfRangeException">Thrown when the offset or count is out of range.</exception>\r
+            <exception cref="T:System.ArgumentException">Thrown when the key already exists or when there is an invalid parameter.</exception>\r
+            <exception cref="T:System.ArgumentNullException">Thrown when a value is null.</exception>\r
+            <exception cref="T:System.InvalidOperationException">Thrown when out of memory or when the bundle instance has been disposed.</exception>\r
+            <code>\r
+            Tizen.Applications.Bundle bundle = new Tizen.Applications.Bundle();\r
+            byte[] byteArray = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };\r
+            bundle.AddItem("byte_array", byteArray, 2, 3);\r
+            </code>\r
+        </member>\r
+        <member name="M:Tizen.Applications.Bundle.AddItem(System.String,System.String)">\r
+            <summary>\r
+            Adds an item into the bundle.\r
+            </summary>\r
+            <param name="key">The key to identify the item with. If an item with the key already exists in the bundle, this method will not succeed.</param>\r
+            <param name="value">The value of the item.</param>\r
+            <exception cref="T:System.ArgumentException">Thrown when the key already exists or when there is an invalid parameter.</exception>\r
+            <exception cref="T:System.InvalidOperationException">Thrown when out of memory or when the bundle instance has been disposed.</exception>\r
+            <code>\r
+            Tizen.Applications.Bundle bundle = new Tizen.Applications.Bundle();\r
+            bundle.AddItem("string", "a_string");\r
+            </code>\r
+        </member>\r
+        <member name="M:Tizen.Applications.Bundle.AddItem(System.String,System.Collections.Generic.IEnumerable{System.String})">\r
+            <summary>\r
+            Adds an item into the bundle.\r
+            </summary>\r
+            <param name="key">The key to identify the item with. If an item with the key already exists in the bundle, this method will not succeed.</param>\r
+            <param name="value">The value of the item.</param>\r
+            <exception cref="T:System.ArgumentException">Thrown when the key already exists or when there is an invalid parameter.</exception>\r
+            <exception cref="T:System.InvalidOperationException">Thrown when out of memory or when the bundle instance has been disposed.</exception>\r
+            <code>\r
+            Tizen.Applications.Bundle bundle = new Tizen.Applications.Bundle();\r
+            string[] stringArray = { "a", "b", "c" };\r
+            bundle.AddItem("string_array", stringArray);\r
+            </code>\r
+        </member>\r
+        <!-- "M:Tizen.Applications.Bundle.GetItem(System.String)" 멤버에 대해 잘못된 형식의 XML 주석은 무시됩니다. -->\r
+        <!-- "M:Tizen.Applications.Bundle.GetItem``1(System.String)" 멤버에 대해 잘못된 형식의 XML 주석은 무시됩니다. -->\r
+        <member name="M:Tizen.Applications.Bundle.TryGetItem(System.String,System.Byte[]@)">\r
+            <summary>\r
+            Gets the value of a bundle item with a specified key.\r
+            </summary>\r
+            <param name="key">The key of the bundle item whose value is desired.</param>\r
+            <param name="value">The value of the bundle item. If the key does not exist or the type of this parameter is incorrect, it is the default value for the value parameter type.</param>\r
+            <returns>true if an item with the key exists and if the value is the same type as the output value parameter, false otherwise.</returns>\r
+            <exception cref="T:System.InvalidOperationException">Thrown when the bundle instance has been disposed.</exception>\r
+            <code>\r
+            Tizen.Applications.Bundle bundle = new Tizen.Applications.Bundle();\r
+            byte[] byteArray = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };\r
+            bundle.AddItem("byte_array", byteArray);\r
+            byte[] aByteArray;\r
+            if (bundle.TryGetItem("byte_array", out aByteArray))\r
+            {\r
+                Console.WriteLine("First item in the byte array: {0}", aByteArray[0]);\r
+            }\r
+            </code>\r
+        </member>\r
+        <member name="M:Tizen.Applications.Bundle.TryGetItem(System.String,System.String@)">\r
+            <summary>\r
+            Gets the value of a bundle item with a specified key.\r
+            </summary>\r
+            <param name="key">The key of the bundle item whose value is desired.</param>\r
+            <param name="value">The value of the bundle item. If the key does not exist or the type of this parameter is incorrect, it is the default value for the value parameter type.</param>\r
+            <returns>true if an item with the key exists and if the value is the same type as the output value parameter, false otherwise.</returns>\r
+            <exception cref="T:System.InvalidOperationException">Thrown when the bundle instance has been disposed.</exception>\r
+            <code>\r
+            Tizen.Applications.Bundle bundle = new Tizen.Applications.Bundle();\r
+            bundle.AddItem("string", "a_string");\r
+            string aString;\r
+            if (bundle.TryGetItem("string", out aString))\r
+            {\r
+                Console.WriteLine(aString);\r
+            }\r
+            </code>\r
+        </member>\r
+        <!-- "M:Tizen.Applications.Bundle.TryGetItem(System.String,System.Collections.Generic.IEnumerable{System.String}@)" 멤버에 대해 잘못된 형식의 XML 주석은 무시됩니다. -->\r
+        <!-- "M:Tizen.Applications.Bundle.Is``1(System.String)" 멤버에 대해 잘못된 형식의 XML 주석은 무시됩니다. -->\r
+        <member name="M:Tizen.Applications.Bundle.RemoveItem(System.String)">\r
+            <summary>\r
+            Removes a bundle item with a specific key from a Bundle.\r
+            </summary>\r
+            <param name="key">The key of the item to delete.</param>\r
+            <returns>true if the item is successfully found and removed, false otherwise (even if the item is not found).</returns>\r
+            <exception cref="T:System.ArgumentException">Thrown when there is an invalid parameter.</exception>\r
+            <exception cref="T:System.InvalidOperationException">Thrown when the bundle instance has been disposed.</exception>\r
+            <code>\r
+            Tizen.Applications.Bundle bundle = new Tizen.Applications.Bundle();\r
+            bundle.AddItem("string", "a_string");\r
+            if (bundle.Contains("string"))\r
+            {\r
+                if (bundle.RemoveItem("string"))\r
+                {\r
+                    Console.WriteLine("Removed");\r
+                }\r
+            }\r
+            </code>\r
+        </member>\r
+        <member name="M:Tizen.Applications.Bundle.Decode(System.String)">\r
+            <summary>\r
+            Decodes an encoded bundle data.\r
+            </summary>\r
+            <param name="bundleRaw">The encoded bundle data. bundleRaw should be the returned value of Tizen.Applications.Bundle.Encode, otherwise this method will not succeed.</param>\r
+            <returns>Decoded Bundle object.</returns>\r
+            <exception cref="T:System.ArgumentException">Thrown when there is an invalid parameter.</exception>\r
+            <code>\r
+            Tizen.Applications.Bundle bundle = new Tizen.Applications.Bundle();\r
+            string bundleRaw = bundle.Encode();\r
+            Bundle data = bundle.Decode(bundleRaw);\r
+            </code>\r
+        </member>\r
+        <member name="M:Tizen.Applications.Bundle.Encode">\r
+            <summary>\r
+            Encodes bundle to string.\r
+            </summary>\r
+            <returns>Encoded bundle data in string.</returns>\r
+            <exception cref="T:System.InvalidOperationException">Thrown when out of memory or when the bundle instance has been disposed.</exception>\r
+            <code>\r
+            Tizen.Applications.Bundle bundle = new Tizen.Applications.Bundle();\r
+            string bundleRaw = bundle.Encode();\r
+            </code>\r
+        </member>\r
+        <member name="M:Tizen.Applications.Bundle.Dispose(System.Boolean)">\r
+            <summary>\r
+            Releases any unmanaged resources used by this object. Can also dispose any other disposable objects.\r
+            </summary>\r
+            <param name="disposing">If true, disposes any disposable objects. If false, does not dispose disposable objects.</param>\r
+        </member>\r
+        <member name="M:Tizen.Applications.Bundle.Finalize">\r
+            <summary>\r
+            Destructor of the bundle class.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.CoreApplication">\r
+            <summary>\r
+            This class represents an application controlled lifecycles by the backend system.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.CoreApplication.#ctor(Tizen.Applications.CoreBackend.ICoreBackend)">\r
+            <summary>\r
+            Initializes the CoreApplication class.\r
+            </summary>\r
+            <param name="backend">The backend instance implementing ICoreBacked interface.</param>\r
+        </member>\r
+        <member name="E:Tizen.Applications.CoreApplication.Created">\r
+            <summary>\r
+            Occurs when the application is launched.\r
+            </summary>\r
+        </member>\r
+        <member name="E:Tizen.Applications.CoreApplication.Terminated">\r
+            <summary>\r
+            Occurs when the application is about to shutdown.\r
+            </summary>\r
+        </member>\r
+        <member name="E:Tizen.Applications.CoreApplication.AppControlReceived">\r
+            <summary>\r
+            Occurs whenever the application receives the appcontrol message.\r
+            </summary>\r
+        </member>\r
+        <member name="E:Tizen.Applications.CoreApplication.LowMemory">\r
+            <summary>\r
+            Occurs when the system memory is low.\r
+            </summary>\r
+        </member>\r
+        <member name="E:Tizen.Applications.CoreApplication.LowBattery">\r
+            <summary>\r
+            Occurs when the system battery is low.\r
+            </summary>\r
+        </member>\r
+        <member name="E:Tizen.Applications.CoreApplication.LocaleChanged">\r
+            <summary>\r
+            Occurs when the system language is chagned.\r
+            </summary>\r
+        </member>\r
+        <member name="E:Tizen.Applications.CoreApplication.RegionFormatChanged">\r
+            <summary>\r
+            Occurs when the region format is changed.\r
+            </summary>\r
+        </member>\r
+        <member name="E:Tizen.Applications.CoreApplication.DeviceOrientationChanged">\r
+            <summary>\r
+            Occurs when the device orientation is changed.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.CoreApplication.Backend">\r
+            <summary>\r
+            The backend instance.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.CoreApplication.Run(System.String[])">\r
+            <summary>\r
+            Runs the application's main loop.\r
+            </summary>\r
+            <param name="args">Arguments from commandline.</param>\r
+        </member>\r
+        <member name="M:Tizen.Applications.CoreApplication.Exit">\r
+            <summary>\r
+            Exits the main loop of the application.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.CoreApplication.OnCreate">\r
+            <summary>\r
+            Overrides this method if want to handle behavior when the application is launched.\r
+            If base.OnCreated() is not called, the event 'Created' will not be emitted.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.CoreApplication.OnTerminate">\r
+            <summary>\r
+            Overrides this method if want to handle behavior when the application is terminated.\r
+            If base.OnTerminate() is not called, the event 'Terminated' will not be emitted.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.CoreApplication.OnAppControlReceived(Tizen.Applications.AppControlReceivedEventArgs)">\r
+            <summary>\r
+            Overrides this method if want to handle behavior when the application receives the appcontrol message.\r
+            If base.OnAppControlReceived() is not called, the event 'AppControlReceived' will not be emitted.\r
+            </summary>\r
+            <param name="e"></param>\r
+        </member>\r
+        <member name="M:Tizen.Applications.CoreApplication.OnLowMemory(Tizen.Applications.LowMemoryEventArgs)">\r
+            <summary>\r
+            Overrides this method if want to handle behavior when the system memory is low.\r
+            If base.OnLowMemory() is not called, the event 'LowMemory' will not be emitted.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.CoreApplication.OnLowBattery(Tizen.Applications.LowBatteryEventArgs)">\r
+            <summary>\r
+            Overrides this method if want to handle behavior when the system battery is low.\r
+            If base.OnLowBattery() is not called, the event 'LowBattery' will not be emitted.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.CoreApplication.OnLocaleChanged(Tizen.Applications.LocaleChangedEventArgs)">\r
+            <summary>\r
+            Overrides this method if want to handle behavior when the system language is changed.\r
+            If base.OnLocaleChanged() is not called, the event 'LocaleChanged' will not be emitted.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.CoreApplication.OnRegionFormatChanged(Tizen.Applications.RegionFormatChangedEventArgs)">\r
+            <summary>\r
+            Overrides this method if want to handle behavior when the region format is changed.\r
+            If base.OnRegionFormatChanged() is not called, the event 'RegionFormatChanged' will not be emitted.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.CoreApplication.OnDeviceOrientationChanged(Tizen.Applications.DeviceOrientationEventArgs)">\r
+            <summary>\r
+            Overrides this method if want to handle behavior when the device orientation is changed.\r
+            If base.OnRegionFormatChanged() is not called, the event 'RegionFormatChanged' will not be emitted.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.CoreApplication.Dispose(System.Boolean)">\r
+            <summary>\r
+            Releases any unmanaged resources used by this object. Can also dispose any other disposable objects.\r
+            </summary>\r
+            <param name="disposing">If true, disposes any disposable objects. If false, does not dispose disposable objects.</param>\r
+        </member>\r
+        <member name="T:Tizen.Applications.DeviceOrientation">\r
+            <summary>\r
+            Enumeration for the device orientation.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.DeviceOrientation.Orientation_0">\r
+            <summary>\r
+            The device orientation is 0.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.DeviceOrientation.Orientation_90">\r
+            <summary>\r
+            The device orientation is 90.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.DeviceOrientation.Orientation_180">\r
+            <summary>\r
+            The device orientation is 180.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.DeviceOrientation.Orientation_270">\r
+            <summary>\r
+            The device orientation is 270.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.DeviceOrientationEventArgs">\r
+            <summary>\r
+            The class for event arguments of the DeviceOrientationChanged.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.DeviceOrientationEventArgs.#ctor(Tizen.Applications.DeviceOrientation)">\r
+            <summary>\r
+            Initializes the DeviceOrientationEventArgs class.\r
+            </summary>\r
+            <param name="orientation">The information of the DeviceOrientation</param>\r
+        </member>\r
+        <member name="P:Tizen.Applications.DeviceOrientationEventArgs.DeviceOrientation">\r
+            <summary>\r
+            The received DeviceOrientation.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.DirectoryInfo">\r
+            <summary>\r
+            Represents directory information of the application.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.DirectoryInfo.Data">\r
+            <summary>\r
+            Gets the absolute path to the application's data directory, which is used to store private data of the application.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.DirectoryInfo.Cache">\r
+            <summary>\r
+            Gets the absolute path to the application's cache directory, which is used to store temporary data of the application.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.DirectoryInfo.Resource">\r
+            <summary>\r
+            Gets the absolute path to the application resource directory. The resource files are delivered with the application package.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.DirectoryInfo.SharedData">\r
+            <summary>\r
+            Gets the absolute path to the application's shared data directory, which is used to share data with other applications.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.DirectoryInfo.SharedResource">\r
+            <summary>\r
+            Gets the absolute path to the application's shared resource directory, which is used to share resources with other applications.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.DirectoryInfo.SharedTrusted">\r
+            <summary>\r
+            Gets the absolute path to the application's shared trusted directory, which is used to share data with a family of trusted applications.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.DirectoryInfo.ExternalData">\r
+            <summary>\r
+            Gets the absolute path to the application's external data directory, which is used to store data of the application.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.DirectoryInfo.ExternalCache">\r
+            <summary>\r
+            Gets the absolute path to the application's external cache directory, which is used to store temporary data of the application.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.DirectoryInfo.ExternalSharedData">\r
+            <summary>\r
+            Gets the absolute path to the application's external shared data directory, which is used to share data with other applications.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.DirectoryInfo.ExpansionPackageResource">\r
+            <summary>\r
+            Gets the absolute path to the application's TEP(Tizen Expansion Package) directory. The resource files are delivered with the expansion package.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.LocaleChangedEventArgs">\r
+            <summary>\r
+            The class for the argument of the LocaleChanged EventHandler\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.LocaleChangedEventArgs.#ctor(System.String)">\r
+            <summary>\r
+            Initializes LocaleChangedEventArgs class\r
+            </summary>\r
+            <param name="locale">The information of the Locale</param>\r
+        </member>\r
+        <member name="P:Tizen.Applications.LocaleChangedEventArgs.Locale">\r
+            <summary>\r
+            The property to get the intformation of the Locale\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.LowBatteryEventArgs">\r
+            <summary>\r
+            The class for the argument of the LowBattery EventHandler\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.LowBatteryEventArgs.#ctor(Tizen.Applications.LowBatteryStatus)">\r
+            <summary>\r
+            Initializes LowBatteryEventArgs class\r
+            </summary>\r
+            <param name="status">The information of the LowBatteryEventArgs</param>\r
+        </member>\r
+        <member name="P:Tizen.Applications.LowBatteryEventArgs.LowBatteryStatus">\r
+            <summary>\r
+            The property to get the intformation of the LowBatteryStatus\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.LowBatteryStatus">\r
+            <summary>\r
+            Enumeration for the low battery status.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.LowBatteryStatus.None">\r
+             <summary>\r
+            \r
+             </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.LowBatteryStatus.PowerOff">\r
+            <summary>\r
+            The battery status is under 1%.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.LowBatteryStatus.CriticalLow">\r
+            <summary>\r
+            The battery status is under 5%.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.LowMemoryEventArgs">\r
+            <summary>\r
+            The class for the argument of the LowMemory EventHandler\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.LowMemoryEventArgs.#ctor(Tizen.Applications.LowMemoryStatus)">\r
+            <summary>\r
+            Initializes LowMemoryEventArgs class\r
+            </summary>\r
+            <param name="status">The information of the LowMemoryStatus</param>\r
+        </member>\r
+        <member name="P:Tizen.Applications.LowMemoryEventArgs.LowMemoryStatus">\r
+            <summary>\r
+            The property to get the intformation of the LowMemoryStatus\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.LowMemoryStatus">\r
+            <summary>\r
+            Enumeration for the low memory status.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.LowMemoryStatus.None">\r
+            <summary>\r
+            Not initialized status.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.LowMemoryStatus.Normal">\r
+            <summary>\r
+            Normal status.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.LowMemoryStatus.SoftWarning">\r
+            <summary>\r
+            Soft warning status.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.LowMemoryStatus.HardWarning">\r
+            <summary>\r
+            Hard warning status.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.ReceivedAppControl">\r
+            <summary>\r
+            Represents the received AppControl.\r
+            </summary>\r
+            <example>\r
+            <code>\r
+            public class ReceivedAppControlExample : UIApplication\r
+            {\r
+                // ...\r
+                protected override void OnAppControlReceived(AppControlReceivedEventArgs e)\r
+                {\r
+                    ReceivedAppControl control = e.ReceivedAppControl;\r
+                    if (control.Operation == AppControlOperations.Pick)\r
+                    {\r
+                        Log.Debug(LogTag, "Received AppControl is Pick");\r
+                    }\r
+                    if (control.IsReplyRequest)\r
+                    {\r
+                        AppControl replyRequest = new AppControl();\r
+                        replyRequest.ExtraData.Add("myKey", "I'm replying");\r
+                        control.ReplyToLaunchRequest(replyRequest, AppControlReplyResult.Succeeded);\r
+                    }\r
+                }\r
+            }\r
+            </code>\r
+            </example>\r
+        </member>\r
+        <member name="M:Tizen.Applications.ReceivedAppControl.#ctor(Tizen.Applications.SafeAppControlHandle)">\r
+            <summary>\r
+            Initializes a ReceivedAppControl class.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ReceivedAppControl.CallerApplicationId">\r
+            <summary>\r
+            Gets the application ID of the caller from the launch request.\r
+            </summary>\r
+            <value>\r
+            The application ID of the caller.\r
+            </value>\r
+            <example>\r
+            <code>\r
+                protected override void OnAppControlReceived(AppControlReceivedEventArgs e)\r
+                {\r
+                    ReceivedAppControl control = e.ReceivedAppControl;\r
+                    string caller = control.CallerApplicationId;\r
+                }\r
+            </code>\r
+            </example>\r
+        </member>\r
+        <member name="P:Tizen.Applications.ReceivedAppControl.IsReplyRequest">\r
+            <summary>\r
+            Checks whether the caller is requesting a reply from the launch request.\r
+            </summary>\r
+            <value>\r
+            If true, this ReceivedAppControl is requested by the caller, otherwise false\r
+            </value>\r
+            <example>\r
+            <code>\r
+                protected override void OnAppControlReceived(AppControlReceivedEventArgs e)\r
+                {\r
+                    ReceivedAppControl control = e.ReceivedAppControl;\r
+                    bool isReply = control.IsReplyRequest;\r
+                }\r
+            </code>\r
+            </example>\r
+        </member>\r
+        <member name="M:Tizen.Applications.ReceivedAppControl.ReplyToLaunchRequest(Tizen.Applications.AppControl,Tizen.Applications.AppControlReplyResult)">\r
+            <summary>\r
+            Replies to the launch request sent by the caller.\r
+            If the caller application sends the launch request to receive the result, the callee application can return the result back to the caller.\r
+            </summary>\r
+            <param name="replyRequest">The AppControl in which the results of the callee are contained.</param>\r
+            <param name="result">The result code of the launch request.</param>\r
+            <example>\r
+            <code>\r
+                protected override void OnAppControlReceived(AppControlReceivedEventArgs e)\r
+                {\r
+                    ReceivedAppControl control = e.ReceivedAppControl;\r
+                    if (control.IsReplyRequest)\r
+                    {\r
+                        AppControl replyRequest = new AppControl();\r
+                        replyRequest.ExtraData.Add("myKey", "I'm replying");\r
+                        control.ReplyToLaunchRequest(replyRequest, AppControlReplyResult.Succeeded);\r
+                    }\r
+                }\r
+            </code>\r
+            </example>\r
+        </member>\r
+        <member name="T:Tizen.Applications.RecentApplicationControl">\r
+            <summary>\r
+            This class provides methods and properties to get information of the recent application.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.RecentApplicationControl.Delete">\r
+            <summary>\r
+            Deletes the application from the recent application list.\r
+            </summary>\r
+            <privlevel>platform</privlevel>\r
+        </member>\r
+        <member name="M:Tizen.Applications.RecentApplicationControl.DeleteAll">\r
+            <summary>\r
+            Deletes all recent applications from the recent application list.\r
+            </summary>\r
+            <privlevel>platform</privlevel>\r
+        </member>\r
+        <member name="T:Tizen.Applications.RecentApplicationInfo">\r
+            <summary>\r
+            This class provides methods and properties to get information of the recent application.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.RecentApplicationInfo.InstanceId">\r
+            <summary>\r
+            Gets the instance ID.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.RecentApplicationInfo.InstanceName">\r
+            <summary>\r
+            Gets the instance name.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.RecentApplicationInfo.Arg">\r
+            <summary>\r
+            Gets the arguements.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.RecentApplicationInfo.Uri">\r
+            <summary>\r
+            Gets the URI.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.RecentApplicationInfo.LaunchTime">\r
+            <summary>\r
+            Gets the launchTime.\r
+            </summary>\r
+        </member>\r
+        <member name="P:Tizen.Applications.RecentApplicationInfo.Controller">\r
+            <summary>\r
+            Gets the recent application controller.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.RegionFormatChangedEventArgs">\r
+            <summary>\r
+            The class for the argument of the RegionFormatChanged EventHandler\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.RegionFormatChangedEventArgs.#ctor(System.String)">\r
+            <summary>\r
+            Initializes RegionFormatChangedEventArgs class\r
+            </summary>\r
+            <param name="region">The information of the Region</param>\r
+        </member>\r
+        <member name="P:Tizen.Applications.RegionFormatChangedEventArgs.Region">\r
+            <summary>\r
+            The property to get the intformation of the Region\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.ResourceManager">\r
+            <summary>\r
+            The class for getting the resource path.\r
+            </summary>\r
+        </member>\r
+        <member name="T:Tizen.Applications.ResourceManager.Category">\r
+            <summary>\r
+            Enumeration for the resource category.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.ResourceManager.Category.Image">\r
+            <summary>\r
+            Image format.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.ResourceManager.Category.Layout">\r
+            <summary>\r
+            Layout format.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.ResourceManager.Category.Sound">\r
+            <summary>\r
+            Sound format.\r
+            </summary>\r
+        </member>\r
+        <member name="F:Tizen.Applications.ResourceManager.Category.Binary">\r
+            <summary>\r
+            Binary format.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.ResourceManager.GetPath(Tizen.Applications.ResourceManager.Category,System.String)">\r
+            <summary>\r
+            Converts resource ID to the path name.\r
+            </summary>\r
+            <param name="category">Category to search.</param>\r
+            <param name="id">ID to search.</param>\r
+            <returns>Found resource path.</returns>\r
+            <exception cref="T:System.InvalidOperationException">Thrown in case of failed conditions.</exception>\r
+        </member>\r
+        <member name="M:Tizen.Applications.ResourceManager.TryGetPath(Tizen.Applications.ResourceManager.Category,System.String)">\r
+            <summary>\r
+            Converts resource ID to the path name.\r
+            </summary>\r
+            <param name="category">Category to search.</param>\r
+            <param name="id">ID to search.</param>\r
+            <returns>Found resource path or null when the resource doesn't exist.</returns>\r
+            <exception cref="T:System.InvalidOperationException">Thrown in case of failed conditions.</exception>\r
+        </member>\r
+        <member name="T:Tizen.Applications.SafeAppControlHandle">\r
+            <summary>\r
+            Represents a wrapper class for an unmanaged AppControl handle.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.SafeAppControlHandle.#ctor">\r
+            <summary>\r
+            Initializes a new instance of the SafeAppControlHandle class.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.SafeAppControlHandle.#ctor(System.IntPtr,System.Boolean)">\r
+            <summary>\r
+            Initializes a new instance of the SafeAppControlHandle class.\r
+            </summary>\r
+            <param name="existingHandle">An IntPtr object that represents the pre-existing handle to use.</param>\r
+            <param name="ownsHandle">true to reliably release the handle during the finalization phase; false to prevent reliable release.</param>\r
+        </member>\r
+        <member name="P:Tizen.Applications.SafeAppControlHandle.IsInvalid">\r
+            <summary>\r
+            Gets a value that indicates whether the handle is invalid.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.SafeAppControlHandle.ReleaseHandle">\r
+            <summary>\r
+            When overridden in a derived class, executes the code required to free the handle.\r
+            </summary>\r
+            <returns>true if the handle is released successfully.</returns>\r
+        </member>\r
+        <member name="T:Tizen.Applications.SafeBundleHandle">\r
+            <summary>\r
+            Represents a wrapper class for an unmanaged bundle handle.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.SafeBundleHandle.#ctor">\r
+            <summary>\r
+            Initializes a new instance of the SafeBundleHandle class.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.SafeBundleHandle.#ctor(System.IntPtr,System.Boolean)">\r
+            <summary>\r
+            Initializes a new instance of the SafeBundleHandle class.\r
+            </summary>\r
+            <param name="existingHandle">An IntPtr object that represents the pre-existing handle to use.</param>\r
+            <param name="ownsHandle">true to reliably release the handle during the finalization phase; false to prevent reliable release.</param>\r
+        </member>\r
+        <member name="P:Tizen.Applications.SafeBundleHandle.IsInvalid">\r
+            <summary>\r
+            Gets a value that indicates whether the handle is invalid.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.SafeBundleHandle.ReleaseHandle">\r
+            <summary>\r
+            When overridden in a derived class, executes the code required to free the handle.\r
+            </summary>\r
+            <returns>true if the handle is released successfully.</returns>\r
+        </member>\r
+        <member name="T:Tizen.Applications.TizenSynchronizationContext">\r
+            <summary>\r
+            Provides a synchronization context for the Tizen application model.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.TizenSynchronizationContext.#ctor">\r
+            <summary>\r
+            Initializes a new instance of the TizenSynchronizationContext class.\r
+            </summary>\r
+        </member>\r
+        <member name="M:Tizen.Applications.TizenSynchronizationContext.Initialize">\r
+            <summary>\r
+            Initilizes a new TizenSynchronizationContext and install into the current thread.\r
+            </summary>\r
+            <remarks>\r
+            It is equivalent.\r
+            <code>\r
+            SetSynchronizationContext(new TizenSynchronizationContext());\r
+            </code>\r
+            </remarks>\r
+        </member>\r
+        <member name="M:Tizen.Applications.TizenSynchronizationContext.Post(System.Threading.SendOrPostCallback,System.Object)">\r
+            <summary>\r
+            Dispatches an asynchronous message to a Tizen main loop.\r
+            </summary>\r
+            <param name="d"><see cref="T:System.Threading.SendOrPostCallback"/>The SendOrPostCallback delegate to call.</param>\r
+            <param name="state"><see cref="T:System.Object"/>The object passed to the delegate.</param>\r
+            <remarks>\r
+            The post method starts an asynchronous request to post a message.</remarks>\r
+        </member>\r
+        <member name="M:Tizen.Applications.TizenSynchronizationContext.Send(System.Threading.SendOrPostCallback,System.Object)">\r
+            <summary>\r
+            Dispatches a synchronous message to a Tizen main loop.\r
+            </summary>\r
+            <param name="d"><see cref="T:System.Threading.SendOrPostCallback"/>The SendOrPostCallback delegate to call.</param>\r
+            <param name="state"><see cref="T:System.Object"/>The object passed to the delegate.</param>\r
+            <remarks>\r
+            The send method starts a synchronous request to send a message.</remarks>\r
+        </member>\r
+    </members>\r
+</doc>\r