Indiefreaks.Xna.Sessions.Live.LiveSessionManager.OnLiveSessionJoined C# (CSharp) Method

OnLiveSessionJoined() private method

Raised when the the player joined the Session
private OnLiveSessionJoined ( IAsyncResult asyncResult ) : void
asyncResult IAsyncResult
return void
        private void OnLiveSessionJoined(IAsyncResult asyncResult)
        {
            NetworkSession networkSession = NetworkSession.EndJoin(asyncResult);
            CurrentSession = new LiveSession(networkSession);

            OnSessionJoined();
        }