コード例 #1
0
ファイル: FakeAuction.cs プロジェクト: powerdude/Goos
 public void StartSellingItem(XmppConnection connection)
 {
     connection.CreateChat(AuctionId);
     _chat = connection.ConnectToChat(AuctionId, User);
     _chat.MessageReceived += MessageReceived;
 }