public ref struct WriteContext
An opaque struct that represents the current serialization state and is passed along as the serialization proceeds. All the public methods are intended to be invoked only by the generated code, users should never invoke them directly.
Namespace
Google.ProtobufAssembly
Google.Protobuf.dll
Methods
WriteBool(bool)
public void WriteBool(bool value)
Writes a bool field value, without a tag.
WriteBytes(ByteString)
public void WriteBytes(ByteString value)
Write a byte string, without a tag, to the stream. The data is length-prefixed.
WriteDouble(double)
public void WriteDouble(double value)
Writes a double field value, without a tag.
WriteEnum(int)
public void WriteEnum(int value)
Writes an enum value, without a tag.
WriteFixed32(uint)
public void WriteFixed32(uint value)
Writes a fixed32 field value, without a tag.
WriteFixed64(ulong)
public void WriteFixed64(ulong value)
Writes a fixed64 field value, without a tag.
WriteFloat(float)
public void WriteFloat(float value)
Writes a float field value, without a tag.
WriteGroup(IMessage)
public void WriteGroup(IMessage value)
Writes a group, without a tag, to the stream.
WriteInt32(int)
public void WriteInt32(int value)
Writes an int32 field value, without a tag.
WriteInt64(long)
public void WriteInt64(long value)
Writes an int64 field value, without a tag.
WriteLength(int)
public void WriteLength(int length)
Writes a length (in bytes) for length-delimited data.
This method simply writes a rawint, but exists for clarity in calling code.
WriteMessage(IMessage)
public void WriteMessage(IMessage value)
Writes a message, without a tag. The data is length-prefixed.
WriteRawTag(byte)
public void WriteRawTag(byte b1)
Writes the given single-byte tag.
WriteRawTag(byte, byte)
public void WriteRawTag(byte b1, byte b2)
Writes the given two-byte tag.
WriteRawTag(byte, byte, byte)
public void WriteRawTag(byte b1, byte b2, byte b3)
Writes the given three-byte tag.
WriteRawTag(byte, byte, byte, byte)
public void WriteRawTag(byte b1, byte b2, byte b3, byte b4)
Writes the given four-byte tag.
WriteRawTag(byte, byte, byte, byte, byte)
public void WriteRawTag(byte b1, byte b2, byte b3, byte b4, byte b5)
Writes the given five-byte tag.
WriteSFixed32(int)
public void WriteSFixed32(int value)
Writes an sfixed32 value, without a tag.
WriteSFixed64(long)
public void WriteSFixed64(long value)
Writes an sfixed64 value, without a tag.
WriteSInt32(int)
public void WriteSInt32(int value)
Writes an sint32 value, without a tag.
WriteSInt64(long)
public void WriteSInt64(long value)
Writes an sint64 value, without a tag.
WriteString(string)
public void WriteString(string value)
Writes a string field value, without a tag. The data is length-prefixed.
WriteTag(int, WireType)
public
void
WriteTag
(
int
fieldNumber
,
WireFormat
.
WireType
type
)
Encodes and writes a tag.
fieldNumber
type
WriteTag(uint)
public void WriteTag(uint tag)
Writes an already-encoded tag.
WriteUInt32(uint)
public void WriteUInt32(uint value)
Writes a uint32 value, without a tag.
WriteUInt64(ulong)
public void WriteUInt64(ulong value)
Writes a uint64 field value, without a tag.