I can return an image as an array of bytes from my .NET web service.
My question is if I want to return more than one image in a single request. For example, my web method currently looks something like this:
public byte[] GetImage(string filename)
BUT what I am trying to solve is how I could achieve something more:
public ..?... GetAllMemberStuffInOneHit(string memberID)
This will return, for example, several images, as well as other information, such as the participantβs name and department.
Can this be done? Please help, thanks.
source share