12345678910111213141516171819202122232425262728293031 |
- using System.Reflection;
- using Tea;
- namespace Alipay.EasySDK.Kernel.Util
- {
-
-
-
- public class ResponseChecker
- {
- public const string SUB_CODE_FIELD_NAME = "SubCode";
-
-
-
-
-
- public static bool Success(TeaModel response)
- {
- PropertyInfo propertyInfo = response.GetType().GetProperty(SUB_CODE_FIELD_NAME);
- if (propertyInfo == null)
- {
-
- return true;
- }
- string subCode = (string)propertyInfo.GetValue(response);
- return string.IsNullOrEmpty(subCode);
- }
- }
- }
|