コード例 #1
0
ファイル: Program.cs プロジェクト: radtek/SocketServer
 void engine_GetRoomVariableResponseRecieved(GetRoomVariableResponseArgs e)
 {
     if (e == null)
     {
         throw new ArgumentNullException("e");
     }
 }
コード例 #2
0
        protected virtual void OnGetRoomVariableResponseRecieved(GetRoomVariableResponseArgs args)
        {
            var func = GetRoomVariableResponseRecieved;

            if (func != null)
            {
                func(this, args);
            }
        }