System.Windows.Automation.AutomationElement.FromLocalProvider C# (CSharp) Method

FromLocalProvider() public static method

public static FromLocalProvider ( object localImpl ) : AutomationElement
localImpl object
return AutomationElement
        public static AutomationElement FromLocalProvider(object /* IRawElementProviderSimple */ localImpl)
        {
            Utility.ValidateArgumentNonNull(localImpl, "localImpl");

            // It's not clear how you'd do this -- COM API doesn't give you
            // the chance to wrap a provider like this.
            throw new NotImplementedException();
        }