I am using thirdparty component which accepts maximum 25KB data at a time. I am passing array of the objects to this third party component from my application.
However the amount of data that my application writes is much more than 25KB. I am retrieving data from database and calling the component directly.
I have added reference of the component in the application. The data I am passing to the component as array of object which contains primitive and non primitive types.
How can I implement the data throttling here?
GC.GetTotalMemory
) how many objects you can store in the array until the25KB
exceeds, then i would query and send only that array. – Nones