Get a business date using the provided start date and the provided holiday schedule.

Namespace:  com.ftlabs.fisa
Assembly:  FISA.NET (in FISA.NET.dll) Version: 1.0.3126.3801

Syntax

C#
public FISADate getBusinessDate(
	FISADate startDate,
	int offset,
	HolidaySchedule holidaySchedule
)
Visual Basic (Declaration)
Public Function getBusinessDate ( _
	startDate As FISADate, _
	offset As Integer, _
	holidaySchedule As HolidaySchedule _
) As FISADate
Visual C++
public:
FISADate^ getBusinessDate(
	FISADate^ startDate, 
	int offset, 
	HolidaySchedule^ holidaySchedule
)

Parameters

startDate
Type: com.ftlabs.fisa..::.FISADate
The start date.
offset
Type: System..::.Int32
The number of business days from today, can be positive or negative.
holidaySchedule
Type: com.ftlabs.fisa..::.HolidaySchedule

Return Value

A business date.

Remarks

If a default HolidaySchedule has been set, then both the default HolidaySchedule, and the HolidaySchedule provided to this method will be considered.

See Also