TraceListener.Fail Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Emituje komunikaty o błędach do odbiornika tworzonego podczas implementowania TraceListener klasy.
Przeciążenia
Fail(String) |
Emituje komunikat o błędzie do odbiornika utworzonego podczas implementowania TraceListener klasy . |
Fail(String, String) |
Emituje komunikat o błędzie i szczegółowy komunikat o błędzie do odbiornika tworzonego podczas implementowania TraceListener klasy. |
Fail(String)
- Źródło:
- TraceListener.cs
- Źródło:
- TraceListener.cs
- Źródło:
- TraceListener.cs
Emituje komunikat o błędzie do odbiornika utworzonego podczas implementowania TraceListener klasy .
public:
virtual void Fail(System::String ^ message);
public virtual void Fail (string? message);
public virtual void Fail (string message);
abstract member Fail : string -> unit
override this.Fail : string -> unit
Public Overridable Sub Fail (message As String)
Parametry
- message
- String
Komunikat do emitowania.
Uwagi
Domyślne zachowanie polega na wyświetlaniu określonego komunikatu w oknie komunikatu, gdy aplikacja jest uruchomiona w trybie interfejsu użytkownika i TraceListener do wystąpień w TraceListenerCollection kolekcji. Domyślnie TraceListenerCollection kolekcja ma wystąpienie klasy DefaultTraceListener. To zachowanie można dostosować, dodając element TraceListener do kolekcji lub usuwając go z kolekcji.
Zobacz też
- TraceListener
- DefaultTraceListener
- ConsoleTraceListener
- EventLogTraceListener
- TextWriterTraceListener
- Debug
- Trace
Dotyczy
Fail(String, String)
- Źródło:
- TraceListener.cs
- Źródło:
- TraceListener.cs
- Źródło:
- TraceListener.cs
Emituje komunikat o błędzie i szczegółowy komunikat o błędzie do odbiornika tworzonego podczas implementowania TraceListener klasy.
public:
virtual void Fail(System::String ^ message, System::String ^ detailMessage);
public virtual void Fail (string? message, string? detailMessage);
public virtual void Fail (string message, string detailMessage);
abstract member Fail : string * string -> unit
override this.Fail : string * string -> unit
Public Overridable Sub Fail (message As String, detailMessage As String)
Parametry
- message
- String
Komunikat do emitowania.
- detailMessage
- String
Szczegółowy komunikat do emitowania.
Uwagi
Domyślne zachowanie polega na wyświetlaniu komunikatu i szczegółowego komunikatu w oknie komunikatu, gdy aplikacja jest uruchomiona w trybie interfejsu użytkownika i TraceListener do wystąpień w TraceListenerCollection kolekcji. Domyślnie TraceListenerCollection kolekcja ma wystąpienie klasy DefaultTraceListener. To zachowanie można dostosować, dodając element TraceListener do kolekcji lub usuwając go z kolekcji.
Zobacz też
- TraceListener
- DefaultTraceListener
- EventLogTraceListener
- ConsoleTraceListener
- TextWriterTraceListener
- Debug
- Trace