Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
Write a date value to a DataWriter object.

Namespace: Tangosol.IO.Pof
Assembly: Coherence (in Coherence.dll) Version: 12.2.1.4014 (12.2.1.4014)

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
System.IO..::..IOException If the passed DataWriter object throws an exception while the value is being written to it.

See Also