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#
public void Write(
	Action<Stream> streamWriter,
	long contentLength
)
Visual Basic
Public Sub Write ( _
	streamWriter As Action(Of Stream), _
	contentLength As Long _
)
Visual C++
public:
virtual void Write(
	Action<Stream^>^ streamWriter, 
	long long contentLength
) sealed

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.

Implements

IFileInfo..::..Write(Action<(Of <<'(Stream>)>>), Int64)

Collapse imageSee Also