SaaS CMS has officially launched! Learn more now.

Class RegisterTransferHandlerEventArgs

Occurs when a module try to transfering data.

Inheritance
System.Object
RegisterTransferHandlerEventArgs
Namespace: EPiServer.Core.Transfer
Assembly: EPiServer.dll
Version: 12.0.3
Syntax
public class RegisterTransferHandlerEventArgs : EventArgs

Constructors

RegisterTransferHandlerEventArgs(List<TransferHandlerBase>, TypeOfTransfer)

Initializes a new instance of the RegisterTransferHandlerEventArgs class.

Declaration
public RegisterTransferHandlerEventArgs(List<TransferHandlerBase> handlers, TypeOfTransfer transferType)
Parameters
Type Name Description
System.Collections.Generic.List<TransferHandlerBase> handlers

The handlers.

TypeOfTransfer transferType

Type of the transfer.

Properties

RegisteredHandlers

Gets the registered handlers.

Declaration
public List<TransferHandlerBase> RegisteredHandlers { get; }
Property Value
Type Description
System.Collections.Generic.List<TransferHandlerBase>

The registered handlers.

TransferType

Gets the type of transfer.

Declaration
public TypeOfTransfer TransferType { get; }
Property Value
Type Description
TypeOfTransfer

The type of the transfer.

Extension Methods