Represents the collection of LoggingProviderBase objects.

Namespace:  CuttingEdge.Logging
Assembly:  CuttingEdge.Logging (in CuttingEdge.Logging.dll)

Syntax

Visual Basic (Declaration)
Public ReadOnly Default Property Item ( _
	name As String _
) As LoggingProviderBase
C#
public LoggingProviderBase this[
	string name
] { get; }
Visual C++
public:
property LoggingProviderBase^ default[String^ name] {
	LoggingProviderBase^ get (String^ name);
}
JavaScript
function get_item(name);

Parameters

name
Type: System..::.String
The key by which the provider is identified.

Return Value

The provider with the specified name.

See Also