ListLogger Constructor

NSG Library Logger

ListLogger Constructor

A Sandcastle Documented Class Library
A simple implementation of ILogger using List of Log

Namespace:  NSG.Library.Logger
Assembly:  NSG.Library.Logger (in NSG.Library.Logger.dll) Version: 1.0.1.17 (1.0.1.17)
Syntax

public ListLogger(
	string application,
	int max = 100
)
Public Sub New ( 
	application As String,
	Optional max As Integer = 100
)
public:
ListLogger(
	String^ application, 
	int max = 100
)
new : 
        application : string * 
        ?max : int 
(* Defaults:
        let _max = defaultArg max 100
*)
-> ListLogger

Parameters

application
Type: SystemString
An application name for reporting the log.
max (Optional)
Type: SystemInt32
The maximum number of logs. Default is 100 and the minimum is 10.
See Also

Reference