Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more

Interface IImportStatus

Contains continuosly updated information about an import execution

Namespace: EPiServer.Enterprise
Assembly: EPiServer.Enterprise.dll
Version: 12.0.3
Syntax
public interface IImportStatus

Properties

Categories

Gets information about which categories that where imported

Declaration
IReadOnlyCollection<Category> Categories { get; }
Property Value
Type Description
System.Collections.Generic.IReadOnlyCollection<Category>

ContainedVppFiles

Gets information if current import contained files from a Virtual Path Provider

Declaration
bool ContainedVppFiles { get; }
Property Value
Type Description
System.Boolean

ContentLanguages

Specifies the content languages that has been imported.

Declaration
IReadOnlyCollection<string> ContentLanguages { get; }
Property Value
Type Description
System.Collections.Generic.IReadOnlyCollection<System.String>

ContentTypes

Specifies the content types that has been imported.

Declaration
IReadOnlyCollection<ContentType> ContentTypes { get; }
Property Value
Type Description
System.Collections.Generic.IReadOnlyCollection<ContentType>

DynamicPropertyDefinitions

Gets information about which dynamic property definitions that where imported

Declaration
IReadOnlyCollection<PropertyDefinition> DynamicPropertyDefinitions { get; }
Property Value
Type Description
System.Collections.Generic.IReadOnlyCollection<PropertyDefinition>

Frames

Gets information about which frames that where imported

Declaration
IReadOnlyCollection<Frame> Frames { get; }
Property Value
Type Description
System.Collections.Generic.IReadOnlyCollection<Frame>

ImportedRoot

Gets the top level content item that was imported

Declaration
ContentReference ImportedRoot { get; }
Property Value
Type Description
ContentReference

IsAborting

Indicates if the current import execution is aborting

Declaration
bool IsAborting { get; }
Property Value
Type Description
System.Boolean

IsDone

Indicates if the current import execution is done

Declaration
bool IsDone { get; }
Property Value
Type Description
System.Boolean

Log

Gets the logger for the import context.

Declaration
ITransferLogger Log { get; }
Property Value
Type Description
ITransferLogger

NumberOfContentItems

Gets the number of content items to import.

Declaration
int NumberOfContentItems { get; }
Property Value
Type Description
System.Int32

TabDefinitions

Gets information about which tab definitions that where imported

Declaration
IReadOnlyCollection<TabDefinition> TabDefinitions { get; }
Property Value
Type Description
System.Collections.Generic.IReadOnlyCollection<TabDefinition>

VisitorGroups

Gets information about which Visitor groups that where imported

Declaration
IReadOnlyCollection<Guid> VisitorGroups { get; }
Property Value
Type Description
System.Collections.Generic.IReadOnlyCollection<System.Guid>

Extension Methods