[Bluetooth][TCSACR-216] Add missing feature tag on document (#701)
authorWootak <nonsan1228@gmail.com>
Fri, 8 Feb 2019 05:15:27 +0000 (14:15 +0900)
committerGitHub <noreply@github.com>
Fri, 8 Feb 2019 05:15:27 +0000 (14:15 +0900)
src/Tizen.Network.Bluetooth/Tizen.Network.Bluetooth/BluetoothGatt.cs

index 21c5056..5a40d27 100644 (file)
@@ -56,6 +56,7 @@ namespace Tizen.Network.Bluetooth
         /// Creates the Bluetooth GATT server.
         /// </summary>
         /// <returns>The BluetoothGattServer instance.</returns>
+        /// <feature>http://tizen.org/feature/network.bluetooth.le.gatt.server</feature>
         /// <exception cref="NotSupportedException">Thrown when the BT/BTLE is not supported.</exception>
         /// <exception cref="InvalidOperationException">Thrown when the create GATT server fails.</exception>
         /// <since_tizen> 3 </since_tizen>
@@ -75,6 +76,7 @@ namespace Tizen.Network.Bluetooth
         /// <summary>
         /// Registers the server along with the GATT services of the application it is hosting.
         /// </summary>
+        /// <feature>http://tizen.org/feature/network.bluetooth.le.gatt.server</feature>
         /// <exception cref="NotSupportedException">Thrown when the BT/BTLE is not supported.</exception>
         /// <exception cref="InvalidOperationException">Thrown when the register server application fails.</exception>
         /// <since_tizen> 3 </since_tizen>
@@ -87,6 +89,7 @@ namespace Tizen.Network.Bluetooth
         /// Registers a specified service to this server.
         /// </summary>
         /// <param name="service">The service, which needs to be registered with this server.</param>
+        /// <feature>http://tizen.org/feature/network.bluetooth.le.gatt.server</feature>
         /// <exception cref="NotSupportedException">Thrown when the BT/BTLE is not supported.</exception>
         /// <exception cref="InvalidOperationException">Thrown when the register service fails.</exception>
         /// <since_tizen> 3 </since_tizen>
@@ -106,6 +109,7 @@ namespace Tizen.Network.Bluetooth
         /// <remarks>
         /// Once unregistered, the service object will become invalid and should not be used to access sevices or any children attribute's methods/members.
         /// </remarks>
+        /// <feature>http://tizen.org/feature/network.bluetooth.le.gatt.server</feature>
         /// <exception cref="NotSupportedException">Thrown when the BT/BTLE is not supported.</exception>
         /// <exception cref="InvalidOperationException">Thrown when the unregister service fails.</exception>
         /// <since_tizen> 3 </since_tizen>
@@ -125,6 +129,7 @@ namespace Tizen.Network.Bluetooth
         /// <remarks>
         /// Once unregistered, servicees will become invalid and should not be used to access sevices or any children attribute's methods/members.
         /// </remarks>
+        /// <feature>http://tizen.org/feature/network.bluetooth.le.gatt.server</feature>
         /// <exception cref="NotSupportedException">Thrown when the BT/BTLE is not supported.</exception>
         /// <exception cref="InvalidOperationException">Thrown when the unregister all services fail.</exception>
         /// <since_tizen> 3 </since_tizen>
@@ -138,6 +143,9 @@ namespace Tizen.Network.Bluetooth
         /// </summary>
         /// <param name="uuid">The UUID for the service to get.</param>
         /// <returns>The Service with the given UUID if it exists, null otherwise.</returns>
+        /// <feature>http://tizen.org/feature/network.bluetooth.le.gatt.server</feature>
+        /// <exception cref="NotSupportedException">Thrown when the BT/BTLE is not supported.</exception>
+        /// <exception cref="InvalidOperationException">Thrown when the service is not registered.</exception>
         /// <since_tizen> 3 </since_tizen>
         public BluetoothGattService GetService(string uuid)
         {
@@ -148,6 +156,9 @@ namespace Tizen.Network.Bluetooth
         /// Gets the list of services that belongs to this server.
         /// </summary>
         /// <returns>The list of services that belongs to this server.</returns>
+        /// <feature>http://tizen.org/feature/network.bluetooth.le.gatt.server</feature>
+        /// <exception cref="NotSupportedException">Thrown when the BT/BTLE is not supported.</exception>
+        /// <exception cref="InvalidOperationException">Thrown when the service is not registered.</exception>
         /// <since_tizen> 3 </since_tizen>
         public IEnumerable<BluetoothGattService> GetServices()
         {
@@ -160,6 +171,8 @@ namespace Tizen.Network.Bluetooth
         /// <param name="characteristic">The characteristic whose the value is changed.</param>
         /// <param name="clientAddress">The remote device address to send, notify, or indicate and if set to NULL, then notify/indicate all is enabled.</param>
         /// <returns>true on success, false otherwise.</returns>
+        /// <feature>http://tizen.org/feature/network.bluetooth.le.gatt.server</feature>
+        /// <exception cref="NotSupportedException">Thrown when the BT/BTLE is not supported.</exception>
         /// <exception cref="InvalidOperationException">Thrown when the BT/BTLE is not enabled
         /// or when the remote device is disconnected, or when service is not registered, or when the CCCD is not enabled.</exception>
         /// <since_tizen> 3 </since_tizen>
@@ -173,6 +186,8 @@ namespace Tizen.Network.Bluetooth
         /// </summary>
         /// <param name="characteristic">The characteristic, which has a changed value.</param>
         /// <param name="clientAddress">The remote device address to send, notify, or indicate and if set to NULL, then notify/indicate all is enabled.</param>
+        /// <feature>http://tizen.org/feature/network.bluetooth.le.gatt.server</feature>
+        /// <exception cref="NotSupportedException">Thrown when the BT/BTLE is not supported.</exception>
         /// <exception cref="InvalidOperationException">Thrown when the BT/BTLE is not enabled
         /// or when the remote device is disconnected, or when service is not registered, or when the CCCD is not enabled.</exception>
         /// <since_tizen> 3 </since_tizen>
@@ -189,6 +204,8 @@ namespace Tizen.Network.Bluetooth
         /// <param name="status">The error value in case of failure, 0 for success.</param>
         /// <param name="value">The value to be sent.</param>
         /// <param name="offset">The offset from where the value is read.</param>
+        /// <feature>http://tizen.org/feature/network.bluetooth.le.gatt.server</feature>
+        /// <exception cref="NotSupportedException">Thrown when the BT/BTLE is not supported.</exception>
         /// <exception cref="InvalidOperationException">Thrown when the BT/BTLE is not enabled
         /// or when the remote device is disconnected, or the send response procedure fails.</exception>
         /// <since_tizen> 3 </since_tizen>
@@ -213,6 +230,7 @@ namespace Tizen.Network.Bluetooth
         /// <summary>
         /// Destroys the current object.
         /// </summary>
+        /// <feature>http://tizen.org/feature/network.bluetooth.le.gatt.server</feature>
         /// <since_tizen> 6 </since_tizen>
         public void Dispose()
         {