Add remark for state and GetCustomValue
authorjkjo92 <jkjo92@samsung.com>
Thu, 15 Dec 2016 11:39:37 +0000 (20:39 +0900)
committerjkjo92 <jkjo92@samsung.com>
Thu, 15 Dec 2016 11:39:37 +0000 (20:39 +0900)
Change-Id: I5207b5372ccfee87424bc1e1ee1b8ba1efd5b38c

src/Tizen.Account.OAuth2/Tizen.Account.OAuth2/TokenResponse.cs

index 5bcfee4..476836a 100644 (file)
@@ -48,6 +48,9 @@ namespace Tizen.Account.OAuth2
         /// <summary>
         /// The state parameter present in authorization request.
         /// </summary>
+        /// <remarks>
+        /// State will be null if user doesn't put credential manually.
+        /// </remarks>
         public string State { get; internal set; }
 
         /// <summary>
@@ -61,6 +64,9 @@ namespace Tizen.Account.OAuth2
         /// <summary>
         /// Custom key-value parameter received from service provider
         /// </summary>
+        /// <remarks>
+        /// GetCustomValue will return null if user doesn't put credential manually.
+        /// </remarks>
         public string GetCustomValue(string key)
         {
             IntPtr value;