コード例 #1
0
 private static void ApplyNestedObjectProperties(ref string requestString, object nestedObject)
 {
     foreach (PropertyInfo runtimeProperty in nestedObject.GetType().GetRuntimeProperties())
     {
         object value = runtimeProperty.GetValue(nestedObject, null);
         if (value == null)
         {
             continue;
         }
         foreach (JsonPropertyAttribute customAttribute in runtimeProperty.GetCustomAttributes <JsonPropertyAttribute>())
         {
             RequestStringBuilder.ProcessPlugins(ref requestString, customAttribute, runtimeProperty, value, nestedObject);
         }
     }
 }
コード例 #2
0
        public static string ApplyAllParameters(this StripeService service, object obj, string url, bool isListMethod = false)
        {
            string requestString = url;

            if (obj != null)
            {
                foreach (PropertyInfo runtimeProperty in obj.GetType().GetRuntimeProperties())
                {
                    object value = runtimeProperty.GetValue(obj, null);
                    if (value == null)
                    {
                        continue;
                    }
                    foreach (JsonPropertyAttribute customAttribute in runtimeProperty.GetCustomAttributes <JsonPropertyAttribute>())
                    {
                        if (value is INestedOptions)
                        {
                            ApplyNestedObjectProperties(ref requestString, value);
                        }
                        else
                        {
                            RequestStringBuilder.ProcessPlugins(ref requestString, customAttribute, runtimeProperty, value, obj);
                        }
                    }
                }
            }
            if (service != null)
            {
                IEnumerable <string> enumerable = from p in service.GetType().GetRuntimeProperties()
                                                  where p.Name.StartsWith("Expand") && p.PropertyType == typeof(bool)
                                                  where (bool)p.GetValue(service, null)
                                                  select p.Name;
                foreach (string item in enumerable)
                {
                    string input = item.Substring("Expand".Length);
                    input = Regex.Replace(input, "([a-z])([A-Z])", "$1_$2").ToLower();
                    if (isListMethod)
                    {
                        input = "data." + input;
                    }
                    requestString = ApplyParameterToUrl(requestString, "expand[]", input);
                }
            }
            return(requestString);
        }