Class AssociationChange
Describes a change made to an association.
Inheritance
System.Object
AssociationChange
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: 13.30.0Syntax
public class AssociationChange
Constructors
AssociationChange(ChangeType, Int32, Int32, Int32)
Initializes a new instance of the AssociationChange class.
Declaration
public AssociationChange(ChangeType changeType, int parentEntryId, int childEntryId, int associationId)
Parameters
Type | Name | Description |
---|---|---|
ChangeType | changeType | The type of change made to the association. |
System.Int32 | parentEntryId | The id of the parent entry in the changed association. |
System.Int32 | childEntryId | The id of the child entry in the changed association. |
System.Int32 | associationId | The id of the changed association. |
Properties
AssociationId
The id of the changed association.
Declaration
public int AssociationId { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
ChangeType
The type of change made to the association.
Declaration
public ChangeType ChangeType { get; }
Property Value
Type | Description |
---|---|
ChangeType |
ChildEntryId
The id of the child entry in the changed association.
Declaration
public int ChildEntryId { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
ParentEntryId
The id of the parent entry in the changed association.
Declaration
public int ParentEntryId { get; }
Property Value
Type | Description |
---|---|
System.Int32 |