Maybe an obvious question, but is the "Data" field of that Record null? Check 
binRec.IsNull("Data"), or check for a null return from binRec.GetStream("Data").

If the field is null and you don't expect it to be, please share a little more 
of your code.

-Jason-

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Christopher 
Karper
Sent: Wednesday, May 21, 2008 11:07 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] DTF Stream Operations Issue

I'm trying to read binary data into a memory stream, but

    Stream stream = binRec.GetStream("Data");
    using (StreamReader sr = new StreamReader(stream))
    {
        script += sr.ReadToEnd();
    }



Gives me an ArgumentNullException when I try to read the stream.   Am I missing 
a step?


Is this stream not compatible with a streamreader?

Chris
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to