System.Windows.Automation.WindowClosedEventArgs.WindowClosedEventArgs C# (CSharp) Method

WindowClosedEventArgs() public method

public WindowClosedEventArgs ( int runtimeId ) : System
runtimeId int
return System
        public WindowClosedEventArgs(int[] runtimeId)
            : base(WindowPatternIdentifiers.WindowClosedEvent)
        {
            if (runtimeId == null)
            {
                throw new ArgumentNullException("runtimeId");
            }
            this._runtimeId = (int[])runtimeId.Clone();
        }