Debugger.Log(Int32, String, String) 方法

定义

发送连接调试器的消息。

public:
 static void Log(int level, System::String ^ category, System::String ^ message);
public static void Log (int level, string? category, string? message);
public static void Log (int level, string category, string message);
static member Log : int * string * string -> unit
Public Shared Sub Log (level As Integer, category As String, message As String)

参数

level
Int32

消息重要性的说明。

category
String

消息的类别。

message
String

要显示的消息。

注解

如果没有附加调试器,则此方法不起作用。 调试器可能会报告消息,也可能不报告消息,具体取决于其设置。

注意

类别参数限制为 256 个字符。 长度超过 256 个字符的字符串将被截断。

适用于