Engage.Dnn.Publish.Article.Import C# (CSharp) Method

Import() public method

This method is invoked by the Import mechanism and has to take this instance of a Article and resolve all the id's using the names supplied in the export. hk
public Import ( int currentModuleId, int portalId ) : void
currentModuleId int
portalId int
return void
        public override void Import(int currentModuleId, int portalId)
        {
            // The very first thing is that PortalID needs to be changed to the current portal where content is being
            // imported. Several methods resolving Id's is expecting the correct PortalId (current). hk
            this.PortalId = portalId;

            this.ResolveIds(currentModuleId);
        }