Beispiel #1
0
    private void  fromJSONChoices(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        WhichContactChoicesJSON convert_classy = WhichContactChoicesJSON.from_json(json_value, ignore_extras, true);

        setChoices(convert_classy);
    }
Beispiel #2
0
    private void  fromJSONAmbiguousMatches(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 AmbiguousMatches of SMSRecipientsJSON is not an array.");
        }
        int count1 = json_array1.componentCount();
        List <WhichContactChoicesJSON> vector_AmbiguousMatches1 = new List <WhichContactChoicesJSON>(count1);

        for (int num1 = 0; num1 < count1; ++num1)
        {
            WhichContactChoicesJSON convert_classy = WhichContactChoicesJSON.from_json(json_array1.component(num1), ignore_extras, true);
            vector_AmbiguousMatches1.Add(convert_classy);
        }
        initAmbiguousMatches();
        for (int num2 = 0; num2 < vector_AmbiguousMatches1.Count; ++num2)
        {
            appendAmbiguousMatches(vector_AmbiguousMatches1[num2]);
        }
        for (int num1 = 0; num1 < vector_AmbiguousMatches1.Count; ++num1)
        {
        }
    }