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)