Table of Contents

Class BulkInsertEventArgs

Namespace
CMS.DataEngine
Assembly
CMS.DataEngine.dll

Bulk insert event arguments.

public sealed class BulkInsertEventArgs : CMSEventArgs
Inheritance
object
EventArgs
BulkInsertEventArgs
Inherited Members
Extension Methods

Constructors

BulkInsertEventArgs()

Creates new instance of BulkInsertEventArgs.

[Obsolete("This constructor is meant for system purposes, it shouldn't be used directly. Use constructor with parameters instead. ")]
public BulkInsertEventArgs()

BulkInsertEventArgs(ObjectTypeInfo, IEnumerable<IInfo>)

Creates new instance of BulkInsertEventArgs.

public BulkInsertEventArgs(ObjectTypeInfo typeInfo, IEnumerable<IInfo> objects)

Parameters

typeInfo ObjectTypeInfo

Processed type info

objects IEnumerable<IInfo>

Inserted objects

Properties

InsertedObjects

Inserted objects.

public IEnumerable<IInfo> InsertedObjects { get; }

Property Value

IEnumerable<IInfo>

Remarks

Objects in the collection are not complete (ID is not set) and are not intended for additional processing

TypeInfo

Processed type info.

public ObjectTypeInfo TypeInfo { get; }

Property Value

ObjectTypeInfo