Try our conversational search powered by Generative AI!

Interface ITransferLog

Contains warnings and/or errors captured during an import or export operation

Namespace: EPiServer.Enterprise
Assembly: EPiServer.Enterprise.dll
Version: 11.20.7
Syntax
public interface ITransferLog

Properties

Errors

A collection of errors that has been captured during execution.

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

Warnings

A collection of warnings that has been captured during execution.

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

Extension Methods