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

OnLiveSessionCreated() private method

Raised when the Session is created
private OnLiveSessionCreated ( IAsyncResult asyncResult ) : void
asyncResult IAsyncResult
return void
        private void OnLiveSessionCreated(IAsyncResult asyncResult)
        {
            _networkSession = NetworkSession.EndCreate(asyncResult);

            CurrentSession = new LiveSession(_networkSession);

            OnSessionCreated();
        }