OpenStory.Networking.ConnectionClosingEventArgs.ConnectionClosingEventArgs C# (CSharp) Méthode

ConnectionClosingEventArgs() private méthode

Initializes a new instance of the ConnectionClosingEventArgs class.
private ConnectionClosingEventArgs ( string reason ) : System
reason string
Résultat System
        internal ConnectionClosingEventArgs(string reason)
        {
            Guard.NotNullOrEmpty(() => reason, reason);
            this.Reason = reason;
        }
ConnectionClosingEventArgs