OpenStory.Networking.ConnectionClosingEventArgs.ConnectionClosingEventArgs C# (CSharp) Method

ConnectionClosingEventArgs() private method

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