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 }
}
};
});
