提供: 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));

}

< 前へ | 次へ >