/// <summary>
 /// constructor
 /// </summary>
 /// <param name="name">A string representing the event name</param>
 /// <remarks>You can find all the available names for this event with <see cref="Names"/></remarks>
 /// <param name="udpDataInfo">An <see cref="UDPDataInfo"/> object containing more informations about the Event</param>
 internal UDPManagerEvent(object name, UDPDataInfo udpDataInfo) : base(name)
 {
     this._udpDataInfo = udpDataInfo;
 }
Exemplo n.º 2
0
 internal UDPClientEvent(object name, UDPPeer udpPeer, UDPDataInfo udpDataInfo = null) : base(name, udpDataInfo)
 {
     this._udpPeer = udpPeer;
 }