-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ByteDataReader Offset - setter #11
Comments
Not sure what you are trying to do here: could you please give a more detailed example of the use case and what's missing? |
Thanks @isoos for the quick reply. |
However, your use case suggest that you may be working with headers, and that is not an uncommon parsing problem. Previously I've done this with a combination of a buffer that I write the unfinished header bytes until the boundary condition comes, and then parse+process the header, continuing on the input stream after that. |
I am working on a project where I would need to update the offset position. Something similar to MemoryStream class in C#, Where Stream position can be updated.
I see there is a getter for OffsetInBytes. I think enabling this feature adds more value to this solution.
The text was updated successfully, but these errors were encountered: