From 30625c756b74d78f9373952abc8d2a5a9f623514 Mon Sep 17 00:00:00 2001 From: jkjo92 Date: Thu, 15 Dec 2016 20:39:37 +0900 Subject: [PATCH] Add remark for state and GetCustomValue Change-Id: I5207b5372ccfee87424bc1e1ee1b8ba1efd5b38c --- Tizen.Account.OAuth2/Tizen.Account.OAuth2/TokenResponse.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Tizen.Account.OAuth2/Tizen.Account.OAuth2/TokenResponse.cs b/Tizen.Account.OAuth2/Tizen.Account.OAuth2/TokenResponse.cs index 5bcfee4..476836a 100644 --- a/Tizen.Account.OAuth2/Tizen.Account.OAuth2/TokenResponse.cs +++ b/Tizen.Account.OAuth2/Tizen.Account.OAuth2/TokenResponse.cs @@ -48,6 +48,9 @@ namespace Tizen.Account.OAuth2 /// /// The state parameter present in authorization request. /// + /// + /// State will be null if user doesn't put credential manually. + /// public string State { get; internal set; } /// @@ -61,6 +64,9 @@ namespace Tizen.Account.OAuth2 /// /// Custom key-value parameter received from service provider /// + /// + /// GetCustomValue will return null if user doesn't put credential manually. + /// public string GetCustomValue(string key) { IntPtr value; -- 2.7.4