2

当我的应用程序中出现预期时,我正在尝试记录其他信息。我有以下代码。

        var aiClient = new TelemetryClient();
        var properties = new Dictionary<string, string> { { "FullDetails", logMessage + Environment.NewLine + GetDetails(ex)}};
        aiClient.TrackException(ex, properties, null);

但我在 azure 门户中看到的只是 Azure 门户的异常属性刀片中的标准。

4

1 回答 1

2

您必须单击标准属性部分底部的小“...”。这会将您带到“完整”属性刀片,您应该在底部看到您的属性。

于 2015-02-02T18:33:16.427 回答