Example #1
0
 void engine_GetRoomVariableResponseRecieved(GetRoomVariableResponseArgs e)
 {
     if (e == null)
     {
         throw new ArgumentNullException("e");
     }
 }
Example #2
0
        protected virtual void OnGetRoomVariableResponseRecieved(GetRoomVariableResponseArgs args)
        {
            var func = GetRoomVariableResponseRecieved;

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