Binboo.Core.Events.ErrorEventArgs.ErrorEventArgs C# (CSharp) Méthode

ErrorEventArgs() public méthode

public ErrorEventArgs ( string msg, string details ) : System
msg string
details string
Résultat System
        public ErrorEventArgs(string msg, string details)
        {
            _message = msg;
            _details = details;
        }
ErrorEventArgs