SetScheduleOccurrenceInfos Method
- Last UpdatedApr 15, 2025
- 1 minute read
Sets a collection of records of ScheduleOccurrenceInfo lightweight object type in the Intelatrac database.
'Declaration
Public Function SetScheduleOccurrenceInfos( _
ByVal scheduleOccurrences As Collection(Of ScheduleOccurrenceInfo), _
ByVal token As String _
) As Collection(Of ErrorInfo)
'Usage
Dim instance As SdkClient
Dim scheduleOccurrences As Collection(Of ScheduleOccurrenceInfo)
Dim token As String
Dim value As Collection(Of ErrorInfo)
value = instance.SetScheduleOccurrenceInfos(scheduleOccurrences, token)
public Collection<ErrorInfo> SetScheduleOccurrenceInfos(
Collection<ScheduleOccurrenceInfo> scheduleOccurrences,
string token
)
public:
Collection<ErrorInfo^>^ SetScheduleOccurrenceInfos(
Collection<ScheduleOccurrenceInfo^>^ scheduleOccurrences,
String^ token
)
Parameters
- scheduleOccurrences
- A collection of ScheduleOccurrenceInfo objects to be stored in the database.
- token
- A security token retrieved via
AIMserver request
Return Value
A collection of ErrorInfo objects.
To use the SetScheduleOccurrenceInfos method, you must consider the following points:
- To create a new schedule occurrence, provide the information in the SetScheduleOccurrenceInfos method.
- You cannot edit the information in an existing schedule occurrence. If you need to edit any information,
then you must delete the existing schedule and then create a new schedule by using the SetScheduleOccurrenceInfos method.