Microsoft.VisualStudio.Project.ReferenceContainerNode.GetAutomationObject C# (CSharp) Метод

GetAutomationObject() публичный Метод

Returns an instance of the automation object for ReferenceContainerNode
public GetAutomationObject ( ) : object
Результат object
        public override object GetAutomationObject()
        {
            if(this.ProjectManager == null || this.ProjectManager.IsClosed)
            {
                return null;
            }

            return new Automation.OAReferenceFolderItem(this.ProjectManager.GetAutomationObject() as Automation.OAProject, this);
        }