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

BasePattern() private method

private BasePattern ( AutomationElement el, bool cached ) : System
el AutomationElement
cached bool
return System
        internal BasePattern(AutomationElement el, bool cached)
        {
            Debug.Assert(el != null);
            this._el = el;
            this._cached = cached;
        }
    }
BasePattern