Returns the lists of calendar entries that were added or removed. Modified items are treated as removed, with a new item added replacing it.

Namespace: Ico.Bacnet
Assembly: BacnetScheduleView (in BacnetScheduleView.dll) Version: 10.97.212.0 (10.97.212.00)

Syntax

C#
public void SaveModifiedDateList(
	out List<string> removedEntries,
	out List<string> addedEntries
)
Visual Basic
Public Sub SaveModifiedDateList ( _
	<OutAttribute> ByRef removedEntries As List(Of String), _
	<OutAttribute> ByRef addedEntries As List(Of String) _
)
JScript
public function SaveModifiedDateList(
	removedEntries : List<String>, 
	addedEntries : List<String>
)

Parameters

removedEntries
Type: System.Collections.Generic..::..List<(Of <(<'String>)>)>%
Returns the list of calendar entries that were removed.
addedEntries
Type: System.Collections.Generic..::..List<(Of <(<'String>)>)>%
Returns the list of calendar entries that were added.

See Also