Debug.Write 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
디버그에 대한 정보를 Listeners 컬렉션의 추적 수신기에 씁니다.
오버로드
Write(String, String) |
범주 이름 및 메시지를 Listeners 컬렉션의 추적 수신기에 씁니다. |
Write(Object, String) |
범주 이름과 개체의 ToString() 메서드 값을 Listeners 컬렉션의 추적 수신기에 씁니다. |
Write(String) |
Listeners 컬렉션의 추적 수신기에 메시지를 씁니다. |
Write(Object) |
개체의 ToString() 메서드 값을 Listeners 컬렉션의 추적 수신기에 씁니다. |
Write(String, String)
- Source:
- Debug.cs
- Source:
- Debug.cs
- Source:
- Debug.cs
범주 이름 및 메시지를 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)
매개 변수
- message
- String
쓸 메시지입니다.
- category
- String
출력을 구성하는 데 사용되는 범주 이름입니다.
- 특성
예제
다음 예제에서는 이름이 generalSwitch
TraceSwitch 만듭니다. 이 스위치는 코드 샘플 외부에서 설정됩니다.
스위치가 TraceLevelError
이상으로 설정된 경우 예제에서는 첫 번째 오류 메시지를 Listeners출력합니다.
Listeners 컬렉션에 수신기를 추가하는 방법에 대한 자세한 내용은 TraceListenerCollection 클래스를 참조하세요.
그런 다음 TraceLevelVerbose
설정하면 첫 번째 메시지와 동일한 줄에 두 번째 오류 메시지가 출력됩니다. 줄 종결자는 두 번째 메시지를 따릅니다.
// 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
설명
기본적으로 출력은 DefaultTraceListener인스턴스에 기록됩니다.
category
매개 변수를 사용하여 출력 메시지를 그룹화합니다.
이 메서드는 추적 수신기의 Write 메서드를 호출합니다.
추가 정보
- Debug
- Trace
- BooleanSwitch
- TraceSwitch
- TraceListener
- DefaultTraceListener
- ConsoleTraceListener
- ConditionalAttribute
적용 대상
Write(Object, String)
- Source:
- Debug.cs
- Source:
- Debug.cs
- Source:
- Debug.cs
범주 이름과 개체의 ToString() 메서드 값을 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)
매개 변수
- category
- String
출력을 구성하는 데 사용되는 범주 이름입니다.
- 특성
예제
다음 예제에서는 이름이 generalSwitch
TraceSwitch 만듭니다. 이 스위치는 코드 샘플 외부에서 설정됩니다.
스위치가 TraceLevelError
이상으로 설정된 경우 예제에서는 첫 번째 오류 메시지를 Listeners출력합니다.
Listeners 컬렉션에 수신기를 추가하는 방법에 대한 자세한 내용은 TraceListenerCollection 클래스를 참조하세요.
그런 다음 TraceLevelVerbose
설정하면 첫 번째 메시지와 동일한 줄에 두 번째 오류 메시지가 출력됩니다. 줄 종결자는 두 번째 메시지를 따릅니다.
// 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
설명
기본적으로 출력은 DefaultTraceListener인스턴스에 기록됩니다.
category
매개 변수를 사용하여 출력 메시지를 그룹화합니다.
이 메서드는 추적 수신기의 Write 메서드를 호출합니다.
추가 정보
- Debug
- Trace
- BooleanSwitch
- TraceSwitch
- TraceListener
- DefaultTraceListener
- ConsoleTraceListener
- ConditionalAttribute
적용 대상
Write(String)
- Source:
- Debug.cs
- Source:
- Debug.cs
- Source:
- Debug.cs
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)
매개 변수
- message
- String
쓸 메시지입니다.
- 특성
예제
다음 예제에서는 이름이 generalSwitch
TraceSwitch 만듭니다. 이 스위치는 코드 샘플 외부에서 설정됩니다.
스위치가 TraceLevelError
이상으로 설정된 경우 예제에서는 첫 번째 오류 메시지를 Listeners출력합니다.
Listeners 컬렉션에 수신기를 추가하는 방법에 대한 자세한 내용은 TraceListenerCollection 클래스를 참조하세요.
그런 다음 TraceLevelVerbose
설정하면 첫 번째 메시지와 동일한 줄에 두 번째 오류 메시지가 출력됩니다. 줄 종결자는 두 번째 메시지를 따릅니다.
// 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
설명
기본적으로 출력은 DefaultTraceListener인스턴스에 기록됩니다.
이 메서드는 추적 수신기의 Write 메서드를 호출합니다.
추가 정보
- Debug
- Trace
- BooleanSwitch
- TraceSwitch
- TraceListener
- DefaultTraceListener
- ConsoleTraceListener
- ConditionalAttribute
적용 대상
Write(Object)
- Source:
- Debug.cs
- Source:
- Debug.cs
- Source:
- Debug.cs
개체의 ToString() 메서드 값을 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)
매개 변수
- 특성
예제
다음 예제에서는 이름이 generalSwitch
TraceSwitch 만듭니다. 이 스위치는 코드 샘플 외부에서 설정됩니다.
스위치가 TraceLevelError
이상으로 설정된 경우 예제에서는 첫 번째 오류 메시지를 Listeners출력합니다.
Listeners 컬렉션에 수신기를 추가하는 방법에 대한 자세한 내용은 TraceListenerCollection 클래스를 참조하세요.
그런 다음 TraceLevelVerbose
설정하면 첫 번째 메시지와 동일한 줄에 두 번째 오류 메시지가 출력됩니다. 줄 종결자는 두 번째 메시지를 따릅니다.
// 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
설명
기본적으로 출력은 DefaultTraceListener인스턴스에 기록됩니다.
이 메서드는 추적 수신기의 Write 메서드를 호출합니다.
추가 정보
- Debug
- Trace
- BooleanSwitch
- TraceSwitch
- TraceListener
- DefaultTraceListener
- ConsoleTraceListener
- ConditionalAttribute
적용 대상
.NET