 | AtomicFileTargetCreateFileStream Method |
Creates stream for appending to the specified filePath
Namespace:
NLog.Targets
Assembly:
NLog.Targets.AtomicFile (in NLog.Targets.AtomicFile.dll) Version: 6.0.3+e276e1969a52b8ecc5cc84c1670a516efea0cb19
Syntaxprotected override Stream CreateFileStream(
string filePath,
int bufferSize
)
Protected Overrides 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