Click or drag to resize

PofHelper.WriteDate Method

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Write a date value to a DataWriter object.

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

Parameters

writer
Type: Tangosol.IO.DataWriter
The DataWriter to write to.
year
Type: System.Int32
The year number as defined by ISO8601.
month
Type: System.Int32
The month number between 1 and 12 inclusive as defined by ISO8601.
day
Type: System.Int32
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