C# Class Proto.Test.Data

显示文件 Open project: hultqvist/protobuf Class Usage Examples

Public Methods

Method Description
Deserialize ( Stream stream ) : Data

Helper: create a new instance to deserializing into

Deserialize ( byte buffer ) : Data

Helper: put the buffer into a MemoryStream and create a new instance to deserializing into

Deserialize ( Stream stream, Proto instance ) : Proto.Test.Data

Takes the remaining content of the stream and deserialze it into the instance.

Deserialize ( byte buffer, Proto instance ) : Proto.Test.Data

Helper: put the buffer into a MemoryStream before deserializing

DeserializeLength ( Stream stream, int length ) : Data

Helper: create a new instance to deserializing into

DeserializeLength ( Stream stream, int length, Proto instance ) : Proto.Test.Data

Read the given number of bytes from the stream and deserialze it into the instance.

DeserializeLengthDelimited ( Stream stream ) : Data

Helper: create a new instance to deserializing into

DeserializeLengthDelimited ( Stream stream, Proto instance ) : Proto.Test.Data

Read the VarInt length prefix and the given number of bytes from the stream and deserialze it into the instance.

Serialize ( Stream stream, Data instance ) : void

Serialize the instance into the stream

SerializeLengthDelimited ( Stream stream, Data instance ) : void

Helper: Serialize with a varint length prefix

SerializeToBytes ( Data instance ) : byte[]

Helper: Serialize into a MemoryStream and return its byte array

Method Details

Deserialize() public static method

Helper: create a new instance to deserializing into
public static Deserialize ( Stream stream ) : Data
stream Stream
return Data

Deserialize() public static method

Helper: put the buffer into a MemoryStream and create a new instance to deserializing into
public static Deserialize ( byte buffer ) : Data
buffer byte
return Data

Deserialize() public static method

Takes the remaining content of the stream and deserialze it into the instance.
public static Deserialize ( Stream stream, Proto instance ) : Proto.Test.Data
stream Stream
instance Proto
return Proto.Test.Data

Deserialize() public static method

Helper: put the buffer into a MemoryStream before deserializing
public static Deserialize ( byte buffer, Proto instance ) : Proto.Test.Data
buffer byte
instance Proto
return Proto.Test.Data

DeserializeLength() public static method

Helper: create a new instance to deserializing into
public static DeserializeLength ( Stream stream, int length ) : Data
stream Stream
length int
return Data

DeserializeLength() public static method

Read the given number of bytes from the stream and deserialze it into the instance.
public static DeserializeLength ( Stream stream, int length, Proto instance ) : Proto.Test.Data
stream Stream
length int
instance Proto
return Proto.Test.Data

DeserializeLengthDelimited() public static method

Helper: create a new instance to deserializing into
public static DeserializeLengthDelimited ( Stream stream ) : Data
stream Stream
return Data

DeserializeLengthDelimited() public static method

Read the VarInt length prefix and the given number of bytes from the stream and deserialze it into the instance.
public static DeserializeLengthDelimited ( Stream stream, Proto instance ) : Proto.Test.Data
stream Stream
instance Proto
return Proto.Test.Data

Serialize() public static method

Serialize the instance into the stream
public static Serialize ( Stream stream, Data instance ) : void
stream Stream
instance Data
return void

SerializeLengthDelimited() public static method

Helper: Serialize with a varint length prefix
public static SerializeLengthDelimited ( Stream stream, Data instance ) : void
stream Stream
instance Data
return void

SerializeToBytes() public static method

Helper: Serialize into a MemoryStream and return its byte array
public static SerializeToBytes ( Data instance ) : byte[]
instance Data
return byte[]