0
votes
1answer
20 views
File Upload / Memory Stream Security
Hi,
We are thinking of have a form on our webpage that would allow people to email attachments through.
The method used to do this is via a memory stream, avoiding any files bein …
4
votes
4answers
2k views
Converting TMemoryStream to String in Delphi 2009
We had the following code previous to Delphi 2009:
function MemoryStreamToString(M: TMemoryStream): String;
var
NewCapacity: Longint;
begin
if (M.Size = 0) or (M.Memory = nil …
0
votes
3answers
186 views
How to run unmanaged executable from memory rather than disc
I want to embed a command-line utility in my C# application, so that I can grab its bytes as an array and run the executable without ever saving it to disk as a separate file (avoi …
1
vote
1answer
23 views
Overloaded signification on msdn
I don't understand what does the overloaded term mean in the context of msdn library's page for MemoryStream Close method (or others like Dispose).
See the page here.
To me, overl …
2
votes
1answer
98 views
Why do these two files hash to the same value when I use MemoryStream?
Hello,
I'm writing a c# routine that creates hashes from jpg files. If I pass in a byte array to my SHA512 object then I get the expected behavior, however, if I pass in a memory …
0
votes
3answers
54 views
What is the best practice for storing a file upload to a MemoryStream (C#) ?
I need to temporary store a file upload to a MemoryStream.
What would be the best method to do this using asp.net (3.5)?
Here's what I have so far. It works (locally tested), bu …
0
votes
5answers
2k views
Using MemoryStream to write out to XML
I have noticed two different approaches to writing out data to an XML file (error handling omitted for brevity).
The first method has you build the XML document and then simply sa …
1
vote
1answer
42 views
Save uploaded file to MemoryStream
Hi!
How can I save a uploaded file (a pdf for example) to a MemoryStream?
Thanks!!
0
votes
4answers
54 views
Why does MemoryStream.GetBuffer() always throw?
The following code will always throw
UnuthorizedAccessException (MemoryStream's internal buffer cannot be accessed.)
byte[] buf1 = { 2, 3, 5, 7, 11 };
var ms = new MemoryStream( …
1
vote
5answers
997 views
Image.FromStream() method returns Invalid Argument exception
Hello,
I am capturing images from a smart camera imager and receiving the byte array from the camera through socket programming (.NET application is the client, camera is the serv …
6
votes
6answers
190 views
How do I “fork” a Stream in .NET?
As discussed before, when a BinaryReader or BinaryWriter gets closed, its underlying Stream get closed as well (aargh). Consider this situation: a routine R is passed a MemoryStre …
2
votes
3answers
107 views
How to simplify this MemoryStream code
This code returns a thumbnail of an image loaded from a byte array. I'm trying to understand why the author is using 4 memory streams and if there is a simple way of rewriting this …
0
votes
2answers
236 views
Search and Replace of text in a memorystream in C# .NET
I have loaded a memorystream with a word document and I want to be able to alter specific text within the memorystream and save it back to the word document, like search and replac …
0
votes
0answers
84 views
C# UDP decoding datagrams fails randomly
Hi,
I'm experiencing an issue in a multi threaded application and have been debugging it for the last 3 days but for the life of it can not figure it out. I'm writing this, hoping …
1
vote
5answers
197 views
Will a large System.IO.MemoryStream result in my application’s memory usage increasing dramatically?
I am building a library that allows a user to download files from a URL. One of the options I am considering is letting the user specify the expected MD5 checksum for the file; the …
