I am making windows application and web application in .NET version 4.0. In that application i am sending request of data from .aspx page to windows application.The windows application has a collection of data.i want to send response to that request with proper data from collection. From web application i am requesting data for particular patient and for that i am sending patientID in query string. In windows application i have collection as
class StreamDataInfo
{
public string m_patientID { get; set; }
public List<string> m_StreamData { get; set; }
}
From that collection i want to return data from m_StreamData list in response to that request.Please help me.Thanks in advance.
PatientIDandStreamData?