Click here to Skip to main content
15,899,549 members
Home / Discussions / C#
   

C#

 
QuestionConvert Console Application C# sharp Method Pin
zjaffary24-Oct-08 8:59
zjaffary24-Oct-08 8:59 
AnswerRe: Convert Console Application C# sharp Method Pin
Ennis Ray Lynch, Jr.24-Oct-08 9:06
Ennis Ray Lynch, Jr.24-Oct-08 9:06 
GeneralRe: Convert Console Application C# sharp Method Pin
Vasudevan Deepak Kumar24-Oct-08 9:51
Vasudevan Deepak Kumar24-Oct-08 9:51 
GeneralRe: Convert Console Application C# sharp Method Pin
Ennis Ray Lynch, Jr.24-Oct-08 9:55
Ennis Ray Lynch, Jr.24-Oct-08 9:55 
AnswerRe: Convert Console Application C# sharp Method Pin
Fayu24-Oct-08 9:10
Fayu24-Oct-08 9:10 
AnswerRe: Convert Console Application C# sharp Method Pin
zjaffary25-Oct-08 3:05
zjaffary25-Oct-08 3:05 
GeneralRe: Convert Console Application C# sharp Method Pin
Fayu12-Nov-08 15:46
Fayu12-Nov-08 15:46 
QuestionResuming a download stream Pin
Fayu24-Oct-08 8:57
Fayu24-Oct-08 8:57 
I have a method that basically takes a response stream and saves it to a file. This works fine. I want to be able to add a resume feature to this method.

Any suggestions?


My method:
private void WriteToFile(Stream response, Stream output, long sz)
{
    if (sz == 0)
    {
        return;
    }
    byte[] buffer = new byte[1024 * 64];
    long read = 0;
    long totalRead = 0;
    while ((read = response.Read(buffer, 0, buffer.Length)) > 0)
    {
        output.Write(buffer, 0, Convert.ToInt32(read));
        totalRead += read;
        output.Flush();
    }
}

AnswerRe: Resuming a download stream Pin
Ennis Ray Lynch, Jr.24-Oct-08 9:10
Ennis Ray Lynch, Jr.24-Oct-08 9:10 
GeneralRe: Resuming a download stream Pin
Fayu24-Oct-08 9:13
Fayu24-Oct-08 9:13 
GeneralRe: Resuming a download stream Pin
Ennis Ray Lynch, Jr.24-Oct-08 9:22
Ennis Ray Lynch, Jr.24-Oct-08 9:22 
AnswerResolution: Pin
Fayu24-Oct-08 19:13
Fayu24-Oct-08 19:13 
AnswerRe: Resuming a download stream Pin
zjaffary25-Oct-08 3:06
zjaffary25-Oct-08 3:06 
GeneralRe: Resuming a download stream Pin
Guffa25-Oct-08 3:16
Guffa25-Oct-08 3:16 
QuestionPrint error from CaptureAndPrintMSChart project [modified] Pin
ATC24-Oct-08 8:40
ATC24-Oct-08 8:40 
QuestionCapture Screen problem Pin
Xmen Real 24-Oct-08 8:09
professional Xmen Real 24-Oct-08 8:09 
Questionsizing editor Pin
netJP12L24-Oct-08 7:26
netJP12L24-Oct-08 7:26 
Questiondisplaying proxyAddresses attribute on a AD account Pin
lane0p224-Oct-08 5:30
lane0p224-Oct-08 5:30 
AnswerRe: displaying proxyAddresses attribute on a AD account Pin
Parwej Ahamad24-Oct-08 7:40
professionalParwej Ahamad24-Oct-08 7:40 
QuestionCan't set HorizontalScroll.Visible attribute Pin
Alan Balkany24-Oct-08 5:19
Alan Balkany24-Oct-08 5:19 
AnswerRe: Can't set HorizontalScroll.Visible attribute Pin
DaveyM6924-Oct-08 5:57
professionalDaveyM6924-Oct-08 5:57 
GeneralRe: Can't set HorizontalScroll.Visible attribute Pin
Luc Pattyn24-Oct-08 6:46
sitebuilderLuc Pattyn24-Oct-08 6:46 
GeneralRe: Can't set HorizontalScroll.Visible attribute Pin
Alan Balkany24-Oct-08 7:08
Alan Balkany24-Oct-08 7:08 
GeneralRe: Can't set HorizontalScroll.Visible attribute Pin
DaveyM6924-Oct-08 7:42
professionalDaveyM6924-Oct-08 7:42 
GeneralRe: Can't set HorizontalScroll.Visible attribute Pin
Alan Balkany24-Oct-08 7:47
Alan Balkany24-Oct-08 7:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.