M
Michael Kolias
Hello everyone and happy holidays!
I have a situation where I want to parse on the fly a stream of binary data.
I am developing an httpmodule for asp.net for file uploading.
I do not whant to use the built-in control because it's inadequate.
In theory I would use a que and feed data as it comes in and then have
a parser that extracts the data from the que, parse them and do whatever.
The problem here is that I am dealing with raw binary data that sometimes
could
be hunderds of megabytes.
Should I use the built-in que class and store the data byte by byte?
How would someone go on creating a first-in first-out buffer of bytes with
managed code?
Michael.
I have a situation where I want to parse on the fly a stream of binary data.
I am developing an httpmodule for asp.net for file uploading.
I do not whant to use the built-in control because it's inadequate.
In theory I would use a que and feed data as it comes in and then have
a parser that extracts the data from the que, parse them and do whatever.
The problem here is that I am dealing with raw binary data that sometimes
could
be hunderds of megabytes.
Should I use the built-in que class and store the data byte by byte?
How would someone go on creating a first-in first-out buffer of bytes with
managed code?
Michael.