Elastacloud.AzureManagement.Fluent.QueryManager.BuildDefaultNamespaceXmlEntity C# (CSharp) Method

BuildDefaultNamespaceXmlEntity() public static method

Returns an Xml namespace + entity for the lookup
public static BuildDefaultNamespaceXmlEntity ( string entityName ) : System.Xml.Linq.XName
entityName string
return System.Xml.Linq.XName
        public static XName BuildDefaultNamespaceXmlEntity(string entityName)
        {
            XNamespace ns = ServiceManager.DefaultWindowsAzureXmlNamespace;
            return ns + entityName;
        }