Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Telephony] Reinforce API documents #6330

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/Tizen.Telephony/Tizen.Telephony/CallHandle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ namespace Tizen.Telephony
{
/// <summary>
/// This class provides the APIs to get the information about calls.
/// It contains several properties such as HandleId, Number, Type, Status, Direction, and ConferenceStatus,
/// which allow users to obtain specific details about a call. These properties can be accessed individually
/// to gain insights into aspects like the call handle ID, number, type, status, direction, and whether it is a conference call or not.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public class CallHandle
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ namespace Tizen.Telephony
{
/// <summary>
/// This class contains the data related to the Notification event.
/// Each Notification type corresponds to a specific change in the telephony or network configuration,
/// allowing developers to react accordingly. By leveraging these notifications, applications can maintain
/// real-time awareness of critical telephony and network conditions, enhancing overall user experience.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public class ChangeNotificationEventArgs : EventArgs
Expand Down
3 changes: 3 additions & 0 deletions src/Tizen.Telephony/Tizen.Telephony/Modem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ namespace Tizen.Telephony
{
/// <summary>
/// This class provides APIs to obtain information from the modem.
/// It includes properties such as Imei, which allows users to retrieve the International
/// Mobile Station Equipment Identity (IMEI) of a mobile phone. By utilizing these features,
/// developers can gather valuable information about the modem and incorporate it into their applications effectively.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public class Modem
Expand Down
2 changes: 2 additions & 0 deletions src/Tizen.Telephony/Tizen.Telephony/Network.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ namespace Tizen.Telephony
{
/// <summary>
/// The Network class provides APIs to obtain information about the current telephony service network.
/// It offers properties such as Lac, which allows users to retrieve the Location Area Code (LAC) of
/// the current location. Another property, CellId, enables users to obtain the cell identification number.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public class Network
Expand Down
3 changes: 3 additions & 0 deletions src/Tizen.Telephony/Tizen.Telephony/Sim.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ namespace Tizen.Telephony
{
/// <summary>
/// This class provides APIs that allow you to extract the information stored on a SIM card.
/// It includes properties such as IccId, which allows users to retrieve the Integrated
// Circuit Card Identification (ICCID) of the SIM card. By leveraging these features,
/// developers can gather valuable information about the SIM card and incorporate it into their applications effectively.
/// </summary>
/// <since_tizen> 3 </since_tizen>
public class Sim
Expand Down
Loading