using System; namespace Microsoft.Xna.Framework.Net { /// /// Reasons why a network session ended. /// public enum NetworkSessionEndReason { /// /// The session ended normally. /// ClientSignedOut, /// /// The host ended the session. /// HostEndedSession, /// /// The host removed the user. /// RemovedByHost, /// /// The session was disconnected. /// Disconnected, /// /// A network error occurred. /// NetworkError } }