Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

A wcf service accessing an SQL database:

    private void GetImagesDataFromDB(int imageIndex, int **extraParam**)
    {
        ServiceReference1.DbServiceClient webService =
            new ServiceReference1.DbServiceClient();
        webService.GetSeriesImagesCompleted += new EventHandler<ServiceReference1.GetSeriesImagesCompletedEventArgs>(webService_GetSeriesImagesCompleted);
        webService.GetSeriesImagesAsync(imageIndex);
    }

the GetImageSeriesCompleted EventHandler is here:

    void webService_GetSeriesImagesCompleted(object sender,
        TheApp.ServiceReference1.GetSeriesImagesCompletedEventArgs e)
    {
        if (e.Result != null)
        {
            if (**extraParam** == 1)
            {
                lstImages = e.Result.ToList();

            }
            else 
            {
                // do something else
            }
        }
    }

The service itself is like this:

   public List<Image> GetSeriesImages(int SeriesId)
    {
        DataClassDataContext db = new DataClassDataContext();
        var images = from s in db.Images
                     where s.SeriesID == SeriesId
                     select s;
        return images.ToList();
    }

What is the best way to pass the extraParam to the service completed EventHandler? I need this to direct my service return to a proper UI control.

Thanks.

share|improve this question

1 Answer

up vote 0 down vote accepted

You've probably figured this out by now, but the webService.GetSeriesImagesAsync() call has a second overload, namely, webService.GetSeriesImagesAsync(int seriesId, object userState). That second parameter will get passed into the callback as e.UserState. A good pattern is actually to pass a lambda callback as the userstate, and execute that in the webService_GetSeriesImagesCompleted() method.

share|improve this answer
Thanks Ken, I just got your suggestion and I liked it. No i haven't figured it our but rather found a way around (as always) :-) – val Feb 3 '11 at 21:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.