BoardGameGeekApiClient.Helpers.BoardGameGeekApiClientHelper.IsExpansion C# (CSharp) Method

IsExpansion() public static method

public static IsExpansion ( this boardgame, string typeAttr = "type" ) : bool
boardgame this
typeAttr string
return bool
        public static bool IsExpansion(this XElement boardgame, string typeAttr = "type")
        {
            return boardgame.GetStringValue(typeAttr) == "boardgameexpansion";
        }
        public static List<BoardGameLink> GetExpansionsLinks(this XElement Boardgame)