FakeLogger<T> Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
FakeLogger<T>(FakeLogCollector) |
Initializes a new instance of the FakeLogger<T> class. |
FakeLogger<T>(Action<String>) |
Initializes a new instance of the FakeLogger<T> class that copies all log records to the given output sink. |
FakeLogger<T>(FakeLogCollector)
- Source:
- FakeLoggerT.cs
Initializes a new instance of the FakeLogger<T> class.
public FakeLogger (Microsoft.Extensions.Logging.Testing.FakeLogCollector? collector = default);
new Microsoft.Extensions.Logging.Testing.FakeLogger<'T> : Microsoft.Extensions.Logging.Testing.FakeLogCollector -> Microsoft.Extensions.Logging.Testing.FakeLogger<'T>
Public Sub New (Optional collector As FakeLogCollector = Nothing)
Parameters
- collector
- FakeLogCollector
Where to push all log state.
Applies to
FakeLogger<T>(Action<String>)
- Source:
- FakeLoggerT.cs
Initializes a new instance of the FakeLogger<T> class that copies all log records to the given output sink.
public:
FakeLogger(Action<System::String ^> ^ outputSink);
public FakeLogger (Action<string> outputSink);
new Microsoft.Extensions.Logging.Testing.FakeLogger<'T> : Action<string> -> Microsoft.Extensions.Logging.Testing.FakeLogger<'T>
Public Sub New (outputSink As Action(Of String))
Parameters
Applies to
Colaborar con nosotros en GitHub
El origen de este contenido se puede encontrar en GitHub, donde también puede crear y revisar problemas y solicitudes de incorporación de cambios. Para más información, consulte nuestra guía para colaboradores.