Exemplo n.º 1
0
    public void ResponsePrediction(ExtendedEventArgs eventArgs)
    {
        ResponsePredictionEventArgs args = eventArgs as ResponsePredictionEventArgs;

        if (args.status == 0)
        {
            results = args.results;
        }
    }
    public override ExtendedEventArgs process()
    {
        ResponsePredictionEventArgs args = new ResponsePredictionEventArgs();
        args.status = status;

        if (status == 0) {
            args.results = results;
        }

        return args;
    }
    public override ExtendedEventArgs process()
    {
        ResponsePredictionEventArgs args = new ResponsePredictionEventArgs();

        args.status = status;

        if (status == 0)
        {
            args.results = results;
        }

        return(args);
    }