Debug.Write Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Scrive informazioni sul debug nei listener di traccia nella raccolta Listeners.
Overload
Write(String, String) |
Scrive un nome di categoria e un messaggio nei listener di traccia nella raccolta Listeners. |
Write(Object, String) |
Scrive un nome di categoria e il valore del metodo ToString() dell'oggetto nei listener di traccia nell'insieme Listeners. |
Write(String) |
Scrive un messaggio nei listener di traccia nella raccolta Listeners. |
Write(Object) |
Scrive il valore del metodo ToString() dell'oggetto nei listener di traccia nell'insieme Listeners. |
Write(String, String)
- Origine:
- Debug.cs
- Origine:
- Debug.cs
- Origine:
- Debug.cs
Scrive un nome di categoria e un messaggio nei listener di traccia nella raccolta Listeners.
public:
static void Write(System::String ^ message, System::String ^ category);
[System.Diagnostics.Conditional("DEBUG")]
public static void Write (string message, string category);
[System.Diagnostics.Conditional("DEBUG")]
public static void Write (string? message, string? category);
[<System.Diagnostics.Conditional("DEBUG")>]
static member Write : string * string -> unit
Public Shared Sub Write (message As String, category As String)
Parametri
- message
- String
Messaggio da scrivere.
- category
- String
Nome di categoria utilizzato per organizzare l'output.
- Attributi
Esempio
Nell'esempio seguente viene creato un TraceSwitch denominato generalSwitch
. Questa opzione viene impostata all'esterno dell'esempio di codice.
Se l'opzione è impostata sul TraceLevelError
o versione successiva, nell'esempio viene restituito il primo messaggio di errore al Listeners. Per informazioni sull'aggiunta di un listener alla raccolta Listeners, vedere la classe TraceListenerCollection.
Se quindi il TraceLevel è impostato su Verbose
, nell'esempio viene restituito il secondo messaggio di errore nella stessa riga del primo messaggio. Un terminatore di riga segue il secondo messaggio.
// Class-level declaration.
// Create a TraceSwitch.
static TraceSwitch^ generalSwitch =
gcnew TraceSwitch( "General","Entire Application" );
public:
static void MyErrorMethod( Object^ myObject, String^ category )
{
// Write the message if the TraceSwitch level is set to Error or higher.
if ( generalSwitch->TraceError )
{
#if defined(DEBUG)
Debug::Write( myObject, category );
#endif
}
// Write a second message if the TraceSwitch level is set to Verbose.
if ( generalSwitch->TraceVerbose )
{
#if defined(DEBUG)
Debug::Write( " Object is not valid for this category." );
#endif
}
}
// Class-level declaration.
// Create a TraceSwitch.
static TraceSwitch generalSwitch = new TraceSwitch("General", "Entire Application");
static public void MyErrorMethod(Object myObject, string category)
{
// Write the message if the TraceSwitch level is set to Error or higher.
if (generalSwitch.TraceError)
Debug.Write(myObject, category);
// Write a second message if the TraceSwitch level is set to Verbose.
if (generalSwitch.TraceVerbose)
Debug.WriteLine(" Object is not valid for this category.");
}
' Class-level declaration.
' Create a TraceSwitch.
Private Shared generalSwitch As New TraceSwitch("General", "Entire Application")
Public Shared Sub MyErrorMethod(myObject As Object, category As String)
' Write the message if the TraceSwitch level is set to Error or higher.
If generalSwitch.TraceError Then
Debug.Write(myObject, category)
End If
' Write a second message if the TraceSwitch level is set to Verbose.
If generalSwitch.TraceVerbose Then
Debug.WriteLine(" Object is not valid for this category.")
End If
End Sub
Commenti
Per impostazione predefinita, l'output viene scritto in un'istanza di DefaultTraceListener.
Usare il parametro category
per raggruppare i messaggi di output.
Questo metodo chiama il metodo Write del listener di traccia.
Vedi anche
- Debug
- Trace
- BooleanSwitch
- TraceSwitch
- TraceListener
- DefaultTraceListener
- ConsoleTraceListener
- ConditionalAttribute
Si applica a
Write(Object, String)
- Origine:
- Debug.cs
- Origine:
- Debug.cs
- Origine:
- Debug.cs
Scrive un nome di categoria e il valore del metodo ToString() dell'oggetto nei listener di traccia nell'insieme Listeners.
public:
static void Write(System::Object ^ value, System::String ^ category);
[System.Diagnostics.Conditional("DEBUG")]
public static void Write (object value, string category);
[System.Diagnostics.Conditional("DEBUG")]
public static void Write (object? value, string? category);
[<System.Diagnostics.Conditional("DEBUG")>]
static member Write : obj * string -> unit
Public Shared Sub Write (value As Object, category As String)
Parametri
- category
- String
Nome di categoria utilizzato per organizzare l'output.
- Attributi
Esempio
Nell'esempio seguente viene creato un TraceSwitch denominato generalSwitch
. Questa opzione viene impostata all'esterno dell'esempio di codice.
Se l'opzione è impostata sul TraceLevelError
o versione successiva, nell'esempio viene restituito il primo messaggio di errore al Listeners. Per informazioni sull'aggiunta di un listener alla raccolta Listeners, vedere la classe TraceListenerCollection.
Se quindi il TraceLevel è impostato su Verbose
, nell'esempio viene restituito il secondo messaggio di errore nella stessa riga del primo messaggio. Un terminatore di riga segue il secondo messaggio.
// Class-level declaration.
// Create a TraceSwitch.
static TraceSwitch^ generalSwitch =
gcnew TraceSwitch( "General","Entire Application" );
public:
static void MyErrorMethod( Object^ myObject, String^ category )
{
// Write the message if the TraceSwitch level is set to Error or higher.
if ( generalSwitch->TraceError )
{
#if defined(DEBUG)
Debug::Write( myObject, category );
#endif
}
// Write a second message if the TraceSwitch level is set to Verbose.
if ( generalSwitch->TraceVerbose )
{
#if defined(DEBUG)
Debug::Write( " Object is not valid for this category." );
#endif
}
}
// Class-level declaration.
// Create a TraceSwitch.
static TraceSwitch generalSwitch = new TraceSwitch("General", "Entire Application");
static public void MyErrorMethod(Object myObject, string category)
{
// Write the message if the TraceSwitch level is set to Error or higher.
if (generalSwitch.TraceError)
Debug.Write(myObject, category);
// Write a second message if the TraceSwitch level is set to Verbose.
if (generalSwitch.TraceVerbose)
Debug.WriteLine(" Object is not valid for this category.");
}
' Class-level declaration.
' Create a TraceSwitch.
Private Shared generalSwitch As New TraceSwitch("General", "Entire Application")
Public Shared Sub MyErrorMethod(myObject As Object, category As String)
' Write the message if the TraceSwitch level is set to Error or higher.
If generalSwitch.TraceError Then
Debug.Write(myObject, category)
End If
' Write a second message if the TraceSwitch level is set to Verbose.
If generalSwitch.TraceVerbose Then
Debug.WriteLine(" Object is not valid for this category.")
End If
End Sub
Commenti
Per impostazione predefinita, l'output viene scritto in un'istanza di DefaultTraceListener.
Usare il parametro category
per raggruppare i messaggi di output.
Questo metodo chiama il metodo Write del listener di traccia.
Vedi anche
- Debug
- Trace
- BooleanSwitch
- TraceSwitch
- TraceListener
- DefaultTraceListener
- ConsoleTraceListener
- ConditionalAttribute
Si applica a
Write(String)
- Origine:
- Debug.cs
- Origine:
- Debug.cs
- Origine:
- Debug.cs
Scrive un messaggio nei listener di traccia nella raccolta Listeners.
public:
static void Write(System::String ^ message);
[System.Diagnostics.Conditional("DEBUG")]
public static void Write (string message);
[System.Diagnostics.Conditional("DEBUG")]
public static void Write (string? message);
[<System.Diagnostics.Conditional("DEBUG")>]
static member Write : string -> unit
Public Shared Sub Write (message As String)
Parametri
- message
- String
Messaggio da scrivere.
- Attributi
Esempio
Nell'esempio seguente viene creato un TraceSwitch denominato generalSwitch
. Questa opzione viene impostata all'esterno dell'esempio di codice.
Se l'opzione è impostata sul TraceLevelError
o versione successiva, nell'esempio viene restituito il primo messaggio di errore al Listeners. Per informazioni sull'aggiunta di un listener alla raccolta Listeners, vedere la classe TraceListenerCollection.
Se quindi il TraceLevel è impostato su Verbose
, nell'esempio viene restituito il secondo messaggio di errore nella stessa riga del primo messaggio. Un terminatore di riga segue il secondo messaggio.
// Class-level declaration.
// Create a TraceSwitch.
static TraceSwitch^ generalSwitch =
gcnew TraceSwitch( "General","Entire Application" );
public:
static void MyErrorMethod( Object^ myObject, String^ category )
{
// Write the message if the TraceSwitch level is set to Error or higher.
if ( generalSwitch->TraceError )
{
#if defined(DEBUG)
Debug::Write( myObject, category );
#endif
}
// Write a second message if the TraceSwitch level is set to Verbose.
if ( generalSwitch->TraceVerbose )
{
#if defined(DEBUG)
Debug::Write( " Object is not valid for this category." );
#endif
}
}
// Class-level declaration.
// Create a TraceSwitch.
static TraceSwitch generalSwitch = new TraceSwitch("General", "Entire Application");
static public void MyErrorMethod(Object myObject, string category)
{
// Write the message if the TraceSwitch level is set to Error or higher.
if (generalSwitch.TraceError)
Debug.Write(myObject, category);
// Write a second message if the TraceSwitch level is set to Verbose.
if (generalSwitch.TraceVerbose)
Debug.WriteLine(" Object is not valid for this category.");
}
' Class-level declaration.
' Create a TraceSwitch.
Private Shared generalSwitch As New TraceSwitch("General", "Entire Application")
Public Shared Sub MyErrorMethod(myObject As Object, category As String)
' Write the message if the TraceSwitch level is set to Error or higher.
If generalSwitch.TraceError Then
Debug.Write(myObject, category)
End If
' Write a second message if the TraceSwitch level is set to Verbose.
If generalSwitch.TraceVerbose Then
Debug.WriteLine(" Object is not valid for this category.")
End If
End Sub
Commenti
Per impostazione predefinita, l'output viene scritto in un'istanza di DefaultTraceListener.
Questo metodo chiama il metodo Write del listener di traccia.
Vedi anche
- Debug
- Trace
- BooleanSwitch
- TraceSwitch
- TraceListener
- DefaultTraceListener
- ConsoleTraceListener
- ConditionalAttribute
Si applica a
Write(Object)
- Origine:
- Debug.cs
- Origine:
- Debug.cs
- Origine:
- Debug.cs
Scrive il valore del metodo ToString() dell'oggetto nei listener di traccia nell'insieme Listeners.
public:
static void Write(System::Object ^ value);
[System.Diagnostics.Conditional("DEBUG")]
public static void Write (object value);
[System.Diagnostics.Conditional("DEBUG")]
public static void Write (object? value);
[<System.Diagnostics.Conditional("DEBUG")>]
static member Write : obj -> unit
Public Shared Sub Write (value As Object)
Parametri
- Attributi
Esempio
Nell'esempio seguente viene creato un TraceSwitch denominato generalSwitch
. Questa opzione viene impostata all'esterno dell'esempio di codice.
Se l'opzione è impostata sul TraceLevelError
o versione successiva, nell'esempio viene restituito il primo messaggio di errore al Listeners. Per informazioni sull'aggiunta di un listener alla raccolta Listeners, vedere la classe TraceListenerCollection.
Se quindi il TraceLevel è impostato su Verbose
, nell'esempio viene restituito il secondo messaggio di errore nella stessa riga del primo messaggio. Un terminatore di riga segue il secondo messaggio.
// Class-level declaration.
// Create a TraceSwitch.
static TraceSwitch^ generalSwitch =
gcnew TraceSwitch( "General","Entire Application" );
public:
static void MyErrorMethod( Object^ myObject, String^ category )
{
// Write the message if the TraceSwitch level is set to Error or higher.
if ( generalSwitch->TraceError )
{
#if defined(DEBUG)
Debug::Write( myObject, category );
#endif
}
// Write a second message if the TraceSwitch level is set to Verbose.
if ( generalSwitch->TraceVerbose )
{
#if defined(DEBUG)
Debug::Write( " Object is not valid for this category." );
#endif
}
}
// Class-level declaration.
// Create a TraceSwitch.
static TraceSwitch generalSwitch = new TraceSwitch("General", "Entire Application");
static public void MyErrorMethod(Object myObject, string category)
{
// Write the message if the TraceSwitch level is set to Error or higher.
if (generalSwitch.TraceError)
Debug.Write(myObject, category);
// Write a second message if the TraceSwitch level is set to Verbose.
if (generalSwitch.TraceVerbose)
Debug.WriteLine(" Object is not valid for this category.");
}
' Class-level declaration.
' Create a TraceSwitch.
Private Shared generalSwitch As New TraceSwitch("General", "Entire Application")
Public Shared Sub MyErrorMethod(myObject As Object, category As String)
' Write the message if the TraceSwitch level is set to Error or higher.
If generalSwitch.TraceError Then
Debug.Write(myObject, category)
End If
' Write a second message if the TraceSwitch level is set to Verbose.
If generalSwitch.TraceVerbose Then
Debug.WriteLine(" Object is not valid for this category.")
End If
End Sub
Commenti
Per impostazione predefinita, l'output viene scritto in un'istanza di DefaultTraceListener.
Questo metodo chiama il metodo Write del listener di traccia.
Vedi anche
- Debug
- Trace
- BooleanSwitch
- TraceSwitch
- TraceListener
- DefaultTraceListener
- ConsoleTraceListener
- ConditionalAttribute