add feature key tag
authorjkjo92 <jkjo92@samsung.com>
Thu, 27 Jul 2017 05:13:09 +0000 (14:13 +0900)
committerJinkeun Jo <jkjo92@samsung.com>
Thu, 27 Jul 2017 05:57:35 +0000 (05:57 +0000)
Change-Id: Ide529bbed24b9717ca7c425f4322c2a55aac33ac
Signed-off-by: jkjo92 <jkjo92@samsung.com>
src/Tizen.Account.FidoClient/Tizen.Account.FidoClient/UafAuthenticatorFinder.cs
src/Tizen.Account.FidoClient/Tizen.Account.FidoClient/UafClient.cs

index 537408c..bed73d4 100755 (executable)
@@ -33,7 +33,10 @@ namespace Tizen.Account.FidoClient
         /// <since_tizen> 3 </since_tizen>
         /// <returns>Enumerable list of authenticators</returns>
         /// <privilege>http://tizen.org/privilege/fido.client</privilege>
+        /// <feature>http://tizen.org/feature/fido.uaf</feature>
         /// <exception cref="UnauthorizedAccessException">Thrown when the application does not have privilege to access this method</exception>
+        /// <exception cref="NotSupportedException">FIDO is not supported</exception>
+
         /// <example>
         /// <code>
         ///     IEnumerable<AuthenticatorInformation> authInfos = await UafAuthenticatorFinder.DiscoverAuthenticatorsAsync();
index 9493e8c..da3f9da 100755 (executable)
@@ -102,8 +102,10 @@ namespace Tizen.Account.FidoClient
         /// <param name="uafMessage">The FIDO UAF message which is received from the relying party server</param>
         /// <returns>True if the message can be handled by the device, else false</returns>
         /// <privilege>http://tizen.org/privilege/fido.client</privilege>
+        /// <feature>http://tizen.org/feature/fido.uaf</feature>
         /// <exception cref="ArgumentException"> In case of invalid parameter</exception>
         /// <exception cref="UnauthorizedAccessException">Thrown when the application does not have privilege to access this method</exception>
+        /// <exception cref="NotSupportedException">FIDO is not supported</exception>
         /// <example>
         /// <code>
         ///     UafMessage uafRequest = new UafMessage()
@@ -134,6 +136,7 @@ namespace Tizen.Account.FidoClient
         /// <param name="channelBindng">The channel binding data in JSON format which is received from the relying party server</param>
         /// <returns>FIDO response message</returns>
         /// <privilege>http://tizen.org/privilege/fido.client</privilege>
+        /// <feature>http://tizen.org/feature/fido.uaf</feature>
         /// <exception cref="ArgumentException"> In case of invalid parameter</exception>
         /// <exception cref="UnauthorizedAccessException">Thrown when the application does not have privilege to access this method</exception>
         /// <exception cref="NotSupportedException">FIDO is not supported</exception>
@@ -190,11 +193,13 @@ namespace Tizen.Account.FidoClient
         /// <param name="responseCode">The status code received from Server.(StautsOk implies success)</param>
         /// <param name="response">The FIDO response message sent to server in JSON format</param>
         /// <privilege>http://tizen.org/privilege/fido.client</privilege>
+        /// <feature>http://tizen.org/feature/fido.uaf</feature>
         /// <remarks>
         /// This is especially important for cases when a new registration may be considered by the client to be in a pending state until it is communicated that the server accepted it
         /// </remarks>
         /// <exception cref="ArgumentException"> In case of invalid parameter</exception>
         /// <exception cref="UnauthorizedAccessException">Thrown when the application does not have privilege to access this method</exception>
+        /// <exception cref="NotSupportedException">FIDO is not supported</exception>
         /// <example>
         /// <code>
         ///     UafResponse response = new UafResponse()