NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

HttpResponse.WriteFile (String, Int64, Int64)

Writes a file directly to an HTTP content output stream.

[Visual Basic]
Overloads Public Sub WriteFile( _
   ByVal filename As String, _
   ByVal offset As Long, _
   ByVal size As Long _
)
[C#]
public void WriteFile(
   string filename,
   long offset,
   long size
);
[C++]
public: void WriteFile(
   String* filename,
   __int64 offset,
   __int64 size
);
[JScript]
public function WriteFile(
   filename : String,
   offset : long,
   size : long
);

Parameters

filename
[To be supplied.]
offset
Byte position in file where reading will start.
size
[To be supplied.]

See Also

HttpResponse Class | HttpResponse Members | System.Web Namespace | HttpResponse.WriteFile Overload List