facebook twitter hatena line email

「Unity/sentry/ユーザ名設定」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「<pre> SentrySdk.ConfigureScope(scope => { scope.User = new Sentry.User { Username = "name1", Id = 1234, Other = { { "a...」)
(相違点なし)

2023年8月11日 (金) 20:19時点における版

SentrySdk.ConfigureScope(scope =>
{
    scope.User = new Sentry.User
    {
        Username = "name1",
        Id = 1234,
        Other =
        {
            { "age", 20 }
        }
    };
});