Initializes a new instance of the ScheduleDefinition class.

Namespace:  DlhSoft.Windows.Data
Assembly:  DlhSoft.ProjectData.Core (in DlhSoft.ProjectData.Core.dll)

Syntax

C#
protected internal ScheduleDefinition(
	Object item,
	string contentMemberPath,
	string definitionStringMemberPath,
	Entity..::.Initialization completingParentManagerInitialization,
	Entity..::.Initialization insertedIntoParentCollectionInitialization,
	Entity..::.Initialization removingFromParentCollectionInitialization,
	Entity..::.Initialization disposingInitialization
)
Visual Basic (Declaration)
Protected Friend Sub New ( _
	item As Object, _
	contentMemberPath As String, _
	definitionStringMemberPath As String, _
	completingParentManagerInitialization As Entity..::.Initialization, _
	insertedIntoParentCollectionInitialization As Entity..::.Initialization, _
	removingFromParentCollectionInitialization As Entity..::.Initialization, _
	disposingInitialization As Entity..::.Initialization _
)

Parameters

item
Type: System..::.Object
Schedule definition item to be wrapped by the ScheduleDefinition.
contentMemberPath
Type: System..::.String
Path to an Object value on the source schedule definition item to serve as the schedule definition content, or null to indicate that the content is not provided by the source schedule definition item.
definitionStringMemberPath
Type: System..::.String
Path to a String value on the source schedule definition item to serve as the schedule definition string value, or null to indicate that the definition string value is not provided by the source schedule definition item.
completingParentManagerInitialization
Type: DlhSoft.Windows.Data..::.Entity..::.Initialization
A method to be called when the initialization of the parent EntityManager is completed.
insertedIntoParentCollectionInitialization
Type: DlhSoft.Windows.Data..::.Entity..::.Initialization
A method to be called when the ScheduleDefinition is inserted into the parent collection.
removingFromParentCollectionInitialization
Type: DlhSoft.Windows.Data..::.Entity..::.Initialization
A method to be called when the ScheduleDefinition is removed from the parent collection.
disposingInitialization
Type: DlhSoft.Windows.Data..::.Entity..::.Initialization
A method to be called when the ScheduleDefinition is disposed.

See Also