using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace SuperSocket.SocketBase.Protocol { /// /// UdpRequestInfo, it is designed for passing in business session ID to udp request info /// public class UdpRequestInfo : IRequestInfo { /// /// Initializes a new instance of the class. /// /// The key. /// The session ID. public UdpRequestInfo(string key, string sessionID) { Key = key; SessionID = sessionID; } /// /// Gets the key of this request. /// public string Key { get; private set; } /// /// Gets the session ID. /// public string SessionID { get; private set; } } }