Class RegisterTransferHandlerEventArgs
Occurs when a module try to transfering data.
Inheritance
System.Object
System.EventArgs
RegisterTransferHandlerEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: EPiServer.Core.Transfer
Assembly: EPiServer.dll
Version: 11.20.7Syntax
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. |