From: pjh9216 Date: Thu, 5 Sep 2024 23:47:32 +0000 (-0400) Subject: Enhancement of API description (#6312) X-Git-Tag: submit/tizen/20240906.150840~1^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=40f94e6e8250741ae741d9370ae950f7a2d426de;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git Enhancement of API description (#6312) Signed-off-by: pjh9216 --- diff --git a/src/Tizen.Applications.Common/Tizen.Applications/AppControl.cs b/src/Tizen.Applications.Common/Tizen.Applications/AppControl.cs index 6f341d899..043fa7edf 100755 --- a/src/Tizen.Applications.Common/Tizen.Applications/AppControl.cs +++ b/src/Tizen.Applications.Common/Tizen.Applications/AppControl.cs @@ -102,7 +102,7 @@ namespace Tizen.Applications /// /// Initializes the instance of the AppControl class with the SafeAppControlHandle. /// - /// + /// A reference to the SafeAppControlHandle object. /// 3 public AppControl(SafeAppControlHandle handle) { @@ -169,6 +169,9 @@ namespace Tizen.Applications /// /// Gets the SafeAppControlHandle instance. /// + /// + /// This property returns a reference to the underlying SafeAppControlHandle object. + /// /// 3 public SafeAppControlHandle SafeAppControlHandle { @@ -227,7 +230,8 @@ namespace Tizen.Applications /// Gets and sets the explicit MIME type of the data. /// /// - /// (if the mime is null for setter, it clears the previous value.) + /// This property returns the explicitly set MIME type of the data. If no explicit MIME type is set, it will return null. + /// (Setting this property to null will clear any previously set explicit MIME types.) /// /// /// @@ -328,7 +332,8 @@ namespace Tizen.Applications /// Gets and sets the explicit category. /// /// - /// (if the category is null for setter, it clears the previous value.) + /// This property returns the explicitly set category. If no explicit category is set, it will return null. + /// (Setting this property to null will clear any previously set explicit categories.) /// /// 3 public string Category @@ -363,7 +368,8 @@ namespace Tizen.Applications /// Gets and sets the application ID to explicitly launch. /// /// - /// (if the application ID is null for setter, it clears the previous value.) + /// This property returns the explicitly set application ID. If no explicit application ID is set, it will return null. + /// (Setting this property to null will clear any previously set explicit application IDs.) /// /// /// @@ -446,7 +452,7 @@ namespace Tizen.Applications /// Gets the collection of the extra data. /// /// - /// Extra data for communication between AppControls. + /// The ExtraData property provides access to a collection of key-value pairs representing additional data associated with the application control. /// /// /// @@ -1023,9 +1029,9 @@ namespace Tizen.Applications } /// - /// Sets the window position. + /// Sets the position and size of the window. /// - /// The window position object. + /// A structure containing the coordinates and dimensions of the window. /// Thrown when the argument is null. /// Thrown when the argument is invalid. /// Thrown when the invalid operation error occurs. @@ -1054,7 +1060,7 @@ namespace Tizen.Applications /// /// Gets the window position. /// - /// The window position. + /// A structure containing the coordinates and dimensions of the window. /// Thrown when the invalid operation error occurs. /// 11 public WindowPosition GetWindowPosition() @@ -1357,9 +1363,13 @@ namespace Tizen.Applications } /// - /// Removes the extra data. + /// Deletes a particular piece of extra data from the collection. /// - /// The name of the extra data. + /// Identifier of the data to remove. + /// + /// This method enables removal of individual items from the ExtraData collection. + /// It accepts only non-empty strings as valid input parameters. + /// /// Thrown when the key is a zero-length string. /// Thrown when the key is not found. /// Thrown when the key is rejected.