Version 3.3.0.1

UInt64Serializer class

Namespace: Sirenix.Serialization
Assembly: Sirenix.Serialization
public sealed class UInt64Serializer : Serializer<ulong>
Serializer for the System.UInt64 type.
Inheritance

Constructors

UInt64Serializer()
public UInt64Serializer()

Methods

ReadValue(IDataReader)
Reads a value of type System.UInt64.
public override ulong ReadValue(IDataReader reader)
Parameters
Sirenix.Serialization.IDataReader reader

The reader to use.

Returns
System.UInt64

The value which has been read.

WriteValue(String, UInt64, IDataWriter)
Writes a value of type System.UInt64.
public override void WriteValue(string name, ulong value, IDataWriter writer)
Parameters
System.String name

The name of the value to write.

System.UInt64 value

The value to write.

Sirenix.Serialization.IDataWriter writer

The writer to use.