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
- Source:
- FakeLoggerT.cs
- 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
- Source:
- FakeLoggerT.cs
- 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
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET