Click or drag to resize

PofHelperWriteDate Method

.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Write a date value to a DataWriter object.

Namespace:  Tangosol.IO.Pof
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntax
C#
public static void WriteDate(
	DataWriter writer,
	int year,
	int month,
	int day
)

Parameters

writer
Type: Tangosol.IODataWriter
The DataWriter to write to.
year
Type: SystemInt32
The year number as defined by ISO8601.
month
Type: SystemInt32
The month number between 1 and 12 inclusive as defined by ISO8601.
day
Type: SystemInt32
The day number between 1 and 31 inclusive as defined by ISO8601.
Exceptions
ExceptionCondition
IOException If the passed DataWriter object throws an exception while the value is being written to it.
See Also