示例#1
0
    private void  fromJSONSeriesName(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        SportsPlayoffSpecialGameJSON convert_classy = SportsPlayoffSpecialGameJSON.from_json(json_value, ignore_extras, true);

        setSeriesName(convert_classy);
    }
示例#2
0
    private void  fromJSONPlayoffSpecialTypes(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        JSONArrayValue json_array1 = json_value.array_value();

        if (json_array1 == null)
        {
            throw new Exception("The value for field PlayoffSpecialTypes of SportsPlayoffSpecialTypesResponseStateJSON is not an array.");
        }
        int count1 = json_array1.componentCount();

        if (count1 < 1)
        {
            throw new Exception("The value for field PlayoffSpecialTypes of SportsPlayoffSpecialTypesResponseStateJSON has too few elements.");
        }
        List <SportsPlayoffSpecialGameJSON> vector_PlayoffSpecialTypes1 = new List <SportsPlayoffSpecialGameJSON>(count1);

        for (int num1 = 0; num1 < count1; ++num1)
        {
            SportsPlayoffSpecialGameJSON convert_classy = SportsPlayoffSpecialGameJSON.from_json(json_array1.component(num1), ignore_extras, true);
            vector_PlayoffSpecialTypes1.Add(convert_classy);
        }
        Debug.Assert(vector_PlayoffSpecialTypes1.Count >= 1);
        initPlayoffSpecialTypes();
        for (int num1 = 0; num1 < vector_PlayoffSpecialTypes1.Count; ++num1)
        {
            appendPlayoffSpecialTypes(vector_PlayoffSpecialTypes1[num1]);
        }
        for (int num1 = 0; num1 < vector_PlayoffSpecialTypes1.Count; ++num1)
        {
        }
    }