Writes data in the file. The data are written in a stream.

Namespace: W3CValidationTasks.Core
Assembly: W3CValidationTasks.Core (in W3CValidationTasks.Core.dll) Version: 1.1.1.40

Collapse imageSyntax

C#
void Write(
	Action<Stream> streamWriter,
	long contentLength
)
Visual Basic
Sub Write ( _
	streamWriter As Action(Of Stream), _
	contentLength As Long _
)
Visual C++
void Write(
	Action<Stream^>^ streamWriter, 
	long long contentLength
)

Parameters

streamWriter
Type: System..::..Action<(Of <(<'Stream>)>)>
A method to actually write the data.
contentLength
Type: System..::..Int64
The length, in bytes, of the content that will be written.

Collapse imageSee Also