London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

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