System.Windows.Automation.ObjectModelPattern.GetUnderlyingObjectModel C# (CSharp) Method

GetUnderlyingObjectModel() public method

public GetUnderlyingObjectModel ( ) : object
return object
        public object GetUnderlyingObjectModel()
        {
            try
            {
                return this._pattern.GetUnderlyingObjectModel();
            }
            catch (System.Runtime.InteropServices.COMException e)
            {
                Exception newEx; if (Utility.ConvertException(e, out newEx)) { throw newEx; } else { throw; }
            }
        }