facebook twitter hatena line email

Unity/sentry/ユーザ名設定

提供: 初心者エンジニアの簡易メモ
2023年8月11日 (金) 20:19時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「<pre> SentrySdk.ConfigureScope(scope => { scope.User = new Sentry.User { Username = "name1", Id = 1234, Other = { { "a...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索
SentrySdk.ConfigureScope(scope =>
{
    scope.User = new Sentry.User
    {
        Username = "name1",
        Id = 1234,
        Other =
        {
            { "age", 20 }
        }
    };
});