提供: Bright Pattern Documentation
• English
履歴のやり取り
ログインユーザーの最近のやり取りの一覧は、エージェントがログインした後、AgentPlaceの以下のプロパティで利用できます。
public SortedDictionary<string, Recent> recents;
以下のコードスニペットは、インタラクションのタイムスタンプに基づいて最近のやり取りを並べ替える方法を示しています。
List<Recent> recentList = _AgentPlace.recents.Values.ToList(); recentList.Sort((x, y) => x.timestamp.CompareTo(y.timestamp));
}