Appointment.Save

Save(string)

Saves appointment to the file with iCalendar format using te default save options

public void Save(string filePath)
ParameterTypeDescription
filePathStringA file path

Exceptions

exceptioncondition
ArgumentOutOfRangeExceptionfilePath is null or empty

See Also


Save(string, AppointmentSaveFormat)

Saves appointment to the file with specified format using te default save options

public void Save(string filePath, AppointmentSaveFormat saveFormat)
ParameterTypeDescription
filePathStringA file path
saveFormatAppointmentSaveFormatA save format

Exceptions

exceptioncondition
ArgumentOutOfRangeExceptionfilePath is null or empty
NotSupportedExceptionThe specified save options are not supported

See Also


Save(string, AppointmentSaveOptions)

Saves appointment to the file with specified save options

public void Save(string filePath, AppointmentSaveOptions saveOptions)
ParameterTypeDescription
filePathStringA file path
saveOptionsAppointmentSaveOptionsA save options

Exceptions

exceptioncondition
ArgumentOutOfRangeExceptionfilePath is null or empty
ArgumentNullExceptionsaveOptions is null
NotSupportedExceptionThe specified save options are not supported

See Also


Save(Stream)

Saves appointment to the file with iCalendar format using te default save options

public void Save(Stream stream)
ParameterTypeDescription
streamStreamA stream to save to

Exceptions

exceptioncondition
ArgumentNullExceptionstream is null
NotSupportedExceptionstream does not support writing

See Also


Save(Stream, AppointmentSaveFormat)

Saves appointment to the stream with specified format using te default save options

public void Save(Stream stream, AppointmentSaveFormat saveFormat)
ParameterTypeDescription
streamStreamA stream to save to
saveFormatAppointmentSaveFormatA save format

Exceptions

exceptioncondition
ArgumentNullExceptionstream is null
NotSupportedExceptionThe specified save options are not supported
NotSupportedExceptionstream does not support writing

See Also


Save(Stream, AppointmentSaveOptions)

Saves appointment to the stream with specified save options

public void Save(Stream stream, AppointmentSaveOptions saveOptions)
ParameterTypeDescription
streamStreamA stream to save to
saveOptionsAppointmentSaveOptionsA save options

Exceptions

exceptioncondition
ArgumentNullExceptionsaveOptions or stream is null
NotSupportedExceptionthe specified save options are not supported
NotSupportedExceptionstream does not support writing

See Also