X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FTizen.Network.Connection%2FTizen.Network.Connection%2FConnectionProfile.cs;h=e7ceabd95f40fd54e80fa0262241c14568c2f3a1;hb=0a8c2d0456b96d987f01e0e2130a6d6fb17c4a2e;hp=87fc8a201ee9870e5ed691cfc1e4c2896887401f;hpb=d65c97a44646016ed30b1d9d3a99b238932ccfe8;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/Tizen.Network.Connection/Tizen.Network.Connection/ConnectionProfile.cs b/src/Tizen.Network.Connection/Tizen.Network.Connection/ConnectionProfile.cs index 87fc8a2..e7ceabd 100755 --- a/src/Tizen.Network.Connection/Tizen.Network.Connection/ConnectionProfile.cs +++ b/src/Tizen.Network.Connection/Tizen.Network.Connection/ConnectionProfile.cs @@ -23,7 +23,7 @@ using System.Runtime.InteropServices; namespace Tizen.Network.Connection { /// - /// This Class is ConnectionProfile. It provides event and propeties of the connection profile. + /// This is the ConnectionProfile class. It provides event and propeties of the connection profile. /// /// 3 public class ConnectionProfile : IDisposable @@ -42,7 +42,7 @@ namespace Tizen.Network.Connection } /// - /// The event that is called when the state of profile is changed. + /// The event is called when the state of profile is changed. /// /// 3 /// http://tizen.org/feature/network.ethernet @@ -223,7 +223,7 @@ namespace Tizen.Network.Connection /// The name of the network interface. /// /// 3 - /// Network interface name, e.g. eth0 and pdp0. + /// Network interface name, for example, eth0 and pdp0. public string InterfaceName { get @@ -249,11 +249,11 @@ namespace Tizen.Network.Connection /// http://tizen.org/feature/network.telephony /// http://tizen.org/feature/network.tethering.bluetooth /// http://tizen.org/feature/network.wifi - /// Thrown when feature is not supported. - /// Thrown when permission is denied. - /// Thrown when value is invalid parameter. - /// Thrown when profile instance is invalid or when method failed due to invalid operation - /// Thrown when operation is performed on a disposed object. + /// Thrown when a feature is not supported. + /// Thrown when a permission is denied. + /// Thrown when a value is an invalid parameter. + /// Thrown when a profile instance is invalid or when a method fails due to an invalid operation. + /// Thrown when an operation is performed on a disposed object. public void Refresh() { CheckDisposed(); @@ -269,19 +269,19 @@ namespace Tizen.Network.Connection } /// - /// Get the network state. + /// Gets the network state. /// /// 3 - /// The address family + /// The address family. /// The network state. /// http://tizen.org/feature/network.ethernet /// http://tizen.org/feature/network.telephony /// http://tizen.org/feature/network.tethering.bluetooth /// http://tizen.org/feature/network.wifi - /// Thrown when feature is not supported. - /// Thrown when value is invalid parameter. - /// Thrown when profile instance is invalid or when method failed due to invalid operation - /// Thrown when operation is performed on a disposed object. + /// Thrown when a feature is not supported. + /// Thrown when a value is an invalid parameter. + /// Thrown when a profile instance is invalid or when a method fails due to an invalid operation. + /// Thrown when an operation is performed on a disposed object. public ProfileState GetState(AddressFamily family) { CheckDisposed(); @@ -313,10 +313,10 @@ namespace Tizen.Network.Connection /// /// 3 /// Proxy type of the connection. - /// Thrown during set when feature is not supported. - /// Thrown during set when value is invalid parameter. - /// Thrown during set when profile instance is invalid or when method failed due to invalid operation. - /// Thrown during set when operation is performed on a disposed object. + /// Thrown during set when a feature is not supported. + /// Thrown during set when a value is an invalid parameter. + /// Thrown during set when a profile instance is invalid or when a method fails due to an invalid operation. + /// Thrown during set when a operation is performed on a disposed object. public ProxyType ProxyType { get @@ -350,11 +350,11 @@ namespace Tizen.Network.Connection /// /// 3 /// Proxy address of the connection. - /// Thrown during set when feature is not supported. - /// Thrown during set when value is invalid parameter. - /// Thrown during set when value is null. - /// Thrown during set when profile instance is invalid or when method failed due to invalid operation. - /// Thrown when operation is performed on a disposed object. + /// Thrown during set when a feature is not supported. + /// Thrown during set when a value is an invalid parameter. + /// Thrown during set when a value is null. + /// Thrown during set when a profile instance is invalid or when a method fails due to an invalid operation. + /// Thrown when an operation is performed on a disposed object. public string ProxyAddress { get @@ -394,7 +394,7 @@ namespace Tizen.Network.Connection } /// - /// The address information (IPv4) + /// The address information (IPv4). /// /// 3 /// Instance of IAddressInformation with IPV4 address. @@ -408,7 +408,7 @@ namespace Tizen.Network.Connection } /// - /// The address information (IPv6) + /// The address information (IPv6). /// /// 3 /// Instance of IAddressInformation with IPV6 address. @@ -422,7 +422,7 @@ namespace Tizen.Network.Connection } /// - /// An extended EventArgs class which contains changed profile state. + /// An extended EventArgs class, which contains changed profile state. /// /// 3 public class ProfileStateEventArgs : EventArgs