Gets the list of logging provider to which the logging events will be forwarded. This list will contain at least one provider.

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

Syntax

Visual Basic (Declaration)
Public ReadOnly Property Providers As ReadOnlyCollection(Of LoggingProviderBase)
C#
public ReadOnlyCollection<LoggingProviderBase> Providers { get; }
Visual C++
public:
property ReadOnlyCollection<LoggingProviderBase^>^ Providers {
	ReadOnlyCollection<LoggingProviderBase^>^ get ();
}
JavaScript
function get_providers();

Field Value

The read only list of LoggingProviderBase objects.

Exceptions

ExceptionCondition
System..::.InvalidOperationExceptionThrown when the provider hasn't been initialized properly.

See Also