Oracle® Coherence .NET API Reference Release 3.7.1
E22844-03

Write a date value to a DataWriter object.

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

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