BoardGameGeekApiClient.Helpers.BoardGameGeekApiClientHelper.IsExpansion C# (CSharp) Метод

IsExpansion() публичный статический Метод

public static IsExpansion ( this boardgame, string typeAttr = "type" ) : bool
boardgame this
typeAttr string
Результат bool
        public static bool IsExpansion(this XElement boardgame, string typeAttr = "type")
        {
            return boardgame.GetStringValue(typeAttr) == "boardgameexpansion";
        }
        public static List<BoardGameLink> GetExpansionsLinks(this XElement Boardgame)