Class EntryRelationChange
Describes a change made to an entry relation.
Inheritance
System.Object
EntryRelationChange
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: Mediachase.Commerce.Catalog.Events
Assembly: Mediachase.Commerce.dll
Version: 12.17.2Syntax
public class EntryRelationChange
Constructors
EntryRelationChange(ChangeType, Int32, Int32)
Initializes a new instance of the EntryRelationChange class.
Declaration
public EntryRelationChange(ChangeType changeType, int parentEntryId, int childEntryId)
Parameters
Type | Name | Description |
---|---|---|
ChangeType | changeType | The type of change made to the relation. |
System.Int32 | parentEntryId | The id of the parent entry in the relation. |
System.Int32 | childEntryId | The id of the child entry in the relation. |
Properties
ChangeType
The type of change made to the relation.
Declaration
public ChangeType ChangeType { get; }
Property Value
Type | Description |
---|---|
ChangeType |
ChildEntryId
The id of the child entry in the relation.
Declaration
public int ChildEntryId { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
ParentEntryId
The id of the parent entry in the relation.
Declaration
public int ParentEntryId { get; }
Property Value
Type | Description |
---|---|
System.Int32 |