namespace Tizen.Applications
{
/// <summary>
- ///
+ /// Reply callback for the launch request
/// </summary>
- /// <param name="launchRequest"></param>
- /// <param name="replyRequest"></param>
- /// <param name="result"></param>
+ /// <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>
public delegate void AppControlReplyCallback(AppControl launchRequest, AppControl replyRequest, AppControlReplyResult result);
}
namespace Tizen.Applications
{
/// <summary>
- /// The class for event arguments of the DeviceOrientationChanged
+ /// The class for the argument of the DeviceOrientationChanged EventHandler
/// </summary>
public class DeviceOrientationEventArgs : EventArgs
{
/// <summary>
/// Initializes DeviceOrientationEventArgs class
/// </summary>
- /// <param name="orientation"></param>
+ /// <param name="orientation">The information of the DeviceOrientation</param>
public DeviceOrientationEventArgs(DeviceOrientation orientation)
{
DeviceOrientation = orientation;
}
/// <summary>
- /// The received DeviceOrientation
+ /// The property to get the intformation of the DeviceOrientation
/// </summary>
public DeviceOrientation DeviceOrientation { get; private set; }
}
namespace Tizen.Applications
{
/// <summary>
- ///
+ /// The class for the argument of the LocaleChanged EventHandler
/// </summary>
public class LocaleChangedEventArgs : EventArgs
{
/// <summary>
- ///
+ /// Initializes LocaleChangedEventArgs class
/// </summary>
- /// <param name="locale"></param>
+ /// <param name="locale">The information of the Locale</param>
public LocaleChangedEventArgs(string locale)
{
Locale = locale;
}
/// <summary>
- ///
+ /// The property to get the intformation of the Locale
/// </summary>
public string Locale { get; private set; }
namespace Tizen.Applications
{
/// <summary>
- ///
+ /// The class for the argument of the LowBattery EventHandler
/// </summary>
public class LowBatteryEventArgs : EventArgs
{
/// <summary>
- ///
+ /// Initializes LowBatteryEventArgs class
/// </summary>
- /// <param name="status"></param>
+ /// <param name="status">The information of the LowBatteryEventArgs</param>
public LowBatteryEventArgs(LowBatteryStatus status)
{
LowBatteryStatus = status;
}
/// <summary>
- ///
+ /// The property to get the intformation of the LowBatteryStatus
/// </summary>
public LowBatteryStatus LowBatteryStatus { get; private set; }
}
namespace Tizen.Applications
{
/// <summary>
- ///
+ /// The class for the argument of the LowMemory EventHandler
/// </summary>
public class LowMemoryEventArgs : EventArgs
{
/// <summary>
- ///
+ /// Initializes LowMemoryEventArgs class
/// </summary>
- /// <param name="status"></param>
+ /// <param name="status">The information of the LowMemoryStatus</param>
public LowMemoryEventArgs(LowMemoryStatus status)
{
LowMemoryStatus = status;
}
/// <summary>
- ///
+ /// The property to get the intformation of the LowMemoryStatus
/// </summary>
public LowMemoryStatus LowMemoryStatus { get; private set; }
}
namespace Tizen.Applications
{
/// <summary>
- ///
+ /// The class for the argument of the RegionFormatChanged EventHandler
/// </summary>
public class RegionFormatChangedEventArgs : EventArgs
{
/// <summary>
- ///
+ /// Initializes RegionFormatChangedEventArgs class
/// </summary>
- /// <param name="region"></param>
+ /// <param name="region">The information of the Region</param>
public RegionFormatChangedEventArgs(string region)
{
Region = region;
}
/// <summary>
- ///
+ /// The property to get the intformation of the Region
/// </summary>
public string Region { get; private set; }
}