private void InvokeComplex_OnClick(object sender, RoutedEventArgs e)
        {
            ComplexType2 c = new ComplexType2 { A = 23, B = "Lite text" };
            _ctx.GetRangeWithComplexParameterPOST(c, 23, "heJ", res =>
            {
                UpdateResults(res, _invokeComplexRes1, "GetRangeWithComplexParameterPOST");
            }, null);

            _ctx.GetRangeWithComplexParameterGET(c, 23, "heJ", res =>
            {
                UpdateResults(res, _invokeComplexRes2, "GetRangeWithComplexParameterGET");
            }, null);
        }
Example #2
0
 public IEnumerable <RangeItem> GetRangeWithComplexParameterGET(ComplexType2 ri, int _integer, string str)
 {
     return(_items);
 }