System.Windows.Automation.AutomationElement.FromLocalProvider C# (CSharp) 메소드

FromLocalProvider() 공개 정적인 메소드

public static FromLocalProvider ( object localImpl ) : AutomationElement
localImpl object
리턴 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();
        }