 | FileTargetCreateFileStream Method |
Creates stream for appending to the specified filePath
Namespace:
NLog.Targets
Assembly:
NLog (in NLog.dll) Version: 6.0.0+cfb73701cda54e2410b006f649f072e90daef707
Syntaxprotected virtual Stream CreateFileStream(
string filePath,
int bufferSize
)
Protected Overridable Function CreateFileStream (
filePath As String,
bufferSize As Integer
) As Stream
Dim filePath As String
Dim bufferSize As Integer
Dim returnValue As Stream
returnValue = Me.CreateFileStream(filePath,
bufferSize)
abstract CreateFileStream :
filePath : string *
bufferSize : int -> Stream
override CreateFileStream :
filePath : string *
bufferSize : int -> Stream
Parameters
- filePath
- Type: SystemString
Path of the file to be written - bufferSize
- Type: SystemInt32
Wanted internal buffer size for the stream
Return Value
Type:
StreamStream for appending to the file
See Also