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

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

Get XElement for complex properties: <attribute><complexValue/></attribute>.
private GetXElementComplexProperty ( JProperty prop ) : XElement
prop Newtonsoft.Json.Linq.JProperty
Результат XElement
        private XElement GetXElementComplexProperty (JProperty prop)
        {
            return new XElement(Ns + FormatComplexPropertyName(prop),
                GetObjectOrEnum(prop.Value).Select(GetXObject)
                );
        }