SaaS CMS has officially launched! Learn more now.

Class MirroringQueueData<T>

The Generic queue data

Inheritance
System.Object
MirroringQueueData<T>
Inherited Members
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.MirroringService.Common
Assembly: EPiServer.Cms.AspNet.dll
Version: 11.20.7
Syntax
public class MirroringQueueData<T>
Type Parameters
Name Description
T

Constructors

MirroringQueueData(Guid, MirroringTransferData, T)

Declaration
public MirroringQueueData(Guid context, MirroringTransferData mirroringTransferData, T action)
Parameters
Type Name Description
System.Guid context
MirroringTransferData mirroringTransferData
T action

Properties

Action

Gets or sets the action. Used to be a method handler

Declaration
public T Action { get; set; }
Property Value
Type Description
T

The action.

Context

Gets or sets the context. Used to be mirroring channel id

Declaration
public Guid Context { get; set; }
Property Value
Type Description
System.Guid

The context.

MirroringTransferData

Gets or sets the mirroring transfer data.

Declaration
public MirroringTransferData MirroringTransferData { get; set; }
Property Value
Type Description
MirroringTransferData

The mirroring transfer data.

Extension Methods