Axiom.Serialization.StreamSerializer.StreamSerializer C# (CSharp) Метод

StreamSerializer() публичный Метод

Constructor.
public StreamSerializer ( Stream stream, Endian endianMode, bool autoHeader ) : System
stream Stream The stream on which you will read / write data.
endianMode Endian If true, the first write or read to this stream will /// automatically read / write the header too. This is required if you /// set endianMode to Endian.Auto, but if you manually set the endian mode, /// then you can skip writing / reading the header if you wish, if for example /// this stream is midway through a file which has already included header /// information.
autoHeader bool If true, the first write or read to this stream will /// automatically read / write the header too. This is required if you /// set endianMode to Endian.Auto, but if you manually set the endian mode, /// then you can skip writing / reading the header if you wish, if for example /// this stream is midway through a file which has already included header /// information.
Результат System
		public StreamSerializer( Stream stream, Endian endianMode, bool autoHeader )
#if !AXIOM_DOUBLE_PRECISION
			: this( stream, endianMode, autoHeader, RealStorageFormat.Float )
#else
			: this( stream, endianMode, autoHeader, RealStorageFormat.Double )
#endif

Same methods

StreamSerializer::StreamSerializer ( Stream stream ) : System
StreamSerializer::StreamSerializer ( Stream stream, Endian endianMode ) : System
StreamSerializer