 | RepeatingTargetWrapper Constructor (String, Target, Int32) |
Namespace:
NLog.Targets.Wrappers
Assembly:
NLog (in NLog.dll) Version: 6.0.0+cfb73701cda54e2410b006f649f072e90daef707
Syntaxpublic RepeatingTargetWrapper(
string name,
Target wrappedTarget,
int repeatCount
)
Public Sub New (
name As String,
wrappedTarget As Target,
repeatCount As Integer
)
Dim name As String
Dim wrappedTarget As Target
Dim repeatCount As Integer
Dim instance As New RepeatingTargetWrapper(name, wrappedTarget,
repeatCount)
new :
name : string *
wrappedTarget : Target *
repeatCount : int -> RepeatingTargetWrapper
Parameters
- name
- Type: SystemString
Name of the target. - wrappedTarget
- Type: NLog.TargetsTarget
The wrapped target. - repeatCount
- Type: SystemInt32
The repeat count.
See Also