提供: Bright Pattern Documentation
• 日本語

Revision as of 02:46, 23 September 2026 by BpTranslationReview (talk | contribs) (Reviewed via BpTranslationReview)

< 前へ | 次へ >
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
移動先: 案内、 検索
• English

履歴のやり取り

ログインユーザーの最近のやり取りの一覧は、エージェントがログインした後、AgentPlaceの以下のプロパティで利用できます。

public SortedDictionary<string, Recent> recents;


以下のコードスニペットは、インタラクションのタイムスタンプに基づいて最近のやり取りを並べ替える方法を示しています。

List<Recent> recentList = _AgentPlace.recents.Values.ToList();

recentList.Sort((x, y) => x.timestamp.CompareTo(y.timestamp));

}

< 前へ | 次へ >