コード例 #1
0
ファイル: Server.cs プロジェクト: neiz/JabbR.Eto
		protected virtual void OnUserLeft (UserChannelEventArgs e)
		{
			if (UserLeft != null)
				UserLeft (this, e);
		}
コード例 #2
0
ファイル: Server.cs プロジェクト: neiz/JabbR.Eto
		protected virtual void OnUserJoined (UserChannelEventArgs e)
		{
			if (UserJoined != null)
				UserJoined (this, e);
		}