Indiefreaks.Xna.Sessions.Lidgren.LidgrenAvailableSession.LidgrenAvailableSession C# (CSharp) Method

LidgrenAvailableSession() private method

private LidgrenAvailableSession ( SessionType sessionType, int currentGamerCount, string hostName, int openPrivateSlots, int openPublicSlots, SessionProperties sessionProperties, System.TimeSpan averageRoundtripTime ) : System
sessionType SessionType
currentGamerCount int
hostName string
openPrivateSlots int
openPublicSlots int
sessionProperties SessionProperties
averageRoundtripTime System.TimeSpan
return System
        internal LidgrenAvailableSession(SessionType sessionType, int currentGamerCount, string hostName, int openPrivateSlots, int openPublicSlots, SessionProperties sessionProperties, TimeSpan averageRoundtripTime)
        {
            _sessionType = sessionType;
            _currentGamerCount = currentGamerCount;
            _hostName = hostName;
            _openPrivateSlots = openPrivateSlots;
            _openPublicSlots = openPublicSlots;
            _sessionProperties = sessionProperties;
            _averageRoundtripTime = averageRoundtripTime;
        }
LidgrenAvailableSession