From 1631e9e3ae4d4e311fddbaed996cc1f1b5483e7b Mon Sep 17 00:00:00 2001 From: jkjo92 Date: Thu, 27 Jul 2017 14:13:09 +0900 Subject: [PATCH] add feature key tag Change-Id: Ide529bbed24b9717ca7c425f4322c2a55aac33ac Signed-off-by: jkjo92 --- .../Tizen.Account.FidoClient/UafAuthenticatorFinder.cs | 3 +++ src/Tizen.Account.FidoClient/Tizen.Account.FidoClient/UafClient.cs | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/src/Tizen.Account.FidoClient/Tizen.Account.FidoClient/UafAuthenticatorFinder.cs b/src/Tizen.Account.FidoClient/Tizen.Account.FidoClient/UafAuthenticatorFinder.cs index 537408c..bed73d4 100755 --- a/src/Tizen.Account.FidoClient/Tizen.Account.FidoClient/UafAuthenticatorFinder.cs +++ b/src/Tizen.Account.FidoClient/Tizen.Account.FidoClient/UafAuthenticatorFinder.cs @@ -33,7 +33,10 @@ namespace Tizen.Account.FidoClient /// 3 /// Enumerable list of authenticators /// http://tizen.org/privilege/fido.client + /// http://tizen.org/feature/fido.uaf /// Thrown when the application does not have privilege to access this method + /// FIDO is not supported + /// /// /// IEnumerable authInfos = await UafAuthenticatorFinder.DiscoverAuthenticatorsAsync(); diff --git a/src/Tizen.Account.FidoClient/Tizen.Account.FidoClient/UafClient.cs b/src/Tizen.Account.FidoClient/Tizen.Account.FidoClient/UafClient.cs index 9493e8c..da3f9da 100755 --- a/src/Tizen.Account.FidoClient/Tizen.Account.FidoClient/UafClient.cs +++ b/src/Tizen.Account.FidoClient/Tizen.Account.FidoClient/UafClient.cs @@ -102,8 +102,10 @@ namespace Tizen.Account.FidoClient /// The FIDO UAF message which is received from the relying party server /// True if the message can be handled by the device, else false /// http://tizen.org/privilege/fido.client + /// http://tizen.org/feature/fido.uaf /// In case of invalid parameter /// Thrown when the application does not have privilege to access this method + /// FIDO is not supported /// /// /// UafMessage uafRequest = new UafMessage() @@ -134,6 +136,7 @@ namespace Tizen.Account.FidoClient /// The channel binding data in JSON format which is received from the relying party server /// FIDO response message /// http://tizen.org/privilege/fido.client + /// http://tizen.org/feature/fido.uaf /// In case of invalid parameter /// Thrown when the application does not have privilege to access this method /// FIDO is not supported @@ -190,11 +193,13 @@ namespace Tizen.Account.FidoClient /// The status code received from Server.(StautsOk implies success) /// The FIDO response message sent to server in JSON format /// http://tizen.org/privilege/fido.client + /// http://tizen.org/feature/fido.uaf /// /// 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 /// /// In case of invalid parameter /// Thrown when the application does not have privilege to access this method + /// FIDO is not supported /// /// /// UafResponse response = new UafResponse() -- 2.7.4