AmazedSaint.Elastic.DynamicExtensions.ToXElement C# (CSharp) Method

ToXElement() public static method

Converts an expando to XElement
public static ToXElement ( this e ) : System.Xml.Linq.XElement
e this
return System.Xml.Linq.XElement
        public static XElement ToXElement(this ElasticObject e)
        {
            return (dynamic)XElementFromElastic(e);
        }