Channel9Downloader.ViewModels.Framework.CloseRequestEventArgs.CloseRequestEventArgs C# (CSharp) Method

CloseRequestEventArgs() private method

Initializes a new instance of the CloseRequestEventArgs class.
private CloseRequestEventArgs ( bool result ) : System
result bool Result of the dialog.
return System
        internal CloseRequestEventArgs(bool? result)
        {
            Result = result;
        }
CloseRequestEventArgs