Alba.Jaml.XamlGeneration.XamlGenerator.ProcessBindingPropertyValue C# (CSharp) Метод

ProcessBindingPropertyValue() приватный Метод

private ProcessBindingPropertyValue ( JProperty prop ) : void
prop Newtonsoft.Json.Linq.JProperty
Результат void
        private void ProcessBindingPropertyValue (JProperty prop)
        {
            string value = prop.Value.ToString();

            string simpleValue = FormatSimpleBindingValue(value);
            if (simpleValue != null)
                prop.Value = simpleValue;
            else {
                JToken complexValue = GetJTokenComplexBinding(value);
                if (complexValue != null)
                    prop.Value = complexValue;
            }
        }