Class MessageExtensions (3.23.0)

public static class MessageExtensions

Extension methods on IMessage and IMessage<T>.

Inheritance

object > MessageExtensions

Namespace

Google.Protobuf

Assembly

Google.Protobuf.dll

Methods

IsInitialized(IMessage)

public static bool IsInitialized(this IMessage message)

Checks if all required fields in a message have values set. For proto3 messages, this returns true

Parameter
NameDescription
messageIMessage
Returns
TypeDescription
bool

MergeDelimitedFrom(IMessage, Stream)

public static void MergeDelimitedFrom(this IMessage message, Stream input)

Merges length-delimited data from the given stream into an existing message.

Parameters
NameDescription
messageIMessage

The message to merge the data into.

inputStream

Stream containing the data to merge, which must be protobuf-encoded binary data.

Remarks

The stream is expected to contain a length and then the data. Only the amount of data specified by the length will be consumed.

MergeFrom(IMessage, ByteString)

public static void MergeFrom(this IMessage message, ByteString data)

Merges data from the given byte string into an existing message.

Parameters
NameDescription
messageIMessage

The message to merge the data into.

dataByteString

The data to merge, which must be protobuf-encoded binary data.

MergeFrom(IMessage, ReadOnlySequence<byte>)

public static void MergeFrom(this IMessage message, ReadOnlySequence<byte> sequence)

Merges data from the given sequence into an existing message.

Parameters
NameDescription
messageIMessage

The message to merge the data into.

sequenceReadOnlySequencebyte

Sequence from the specified data to merge, which must be protobuf-encoded binary data.

MergeFrom(IMessage, byte[])

public static void MergeFrom(this IMessage message, byte[] data)

Merges data from the given byte array into an existing message.

Parameters
NameDescription
messageIMessage

The message to merge the data into.

databyte

The data to merge, which must be protobuf-encoded binary data.

MergeFrom(IMessage, byte[], int, int)

public static void MergeFrom(this IMessage message, byte[] data, int offset, int length)

Merges data from the given byte array slice into an existing message.

Parameters
NameDescription
messageIMessage

The message to merge the data into.

databyte

The data containing the slice to merge, which must be protobuf-encoded binary data.

offsetint

The offset of the slice to merge.

lengthint

The length of the slice to merge.

MergeFrom(IMessage, Stream)

public static void MergeFrom(this IMessage message, Stream input)

Merges data from the given stream into an existing message.

Parameters
NameDescription
messageIMessage

The message to merge the data into.

inputStream

Stream containing the data to merge, which must be protobuf-encoded binary data.

MergeFrom(IMessage, ReadOnlySpan<byte>)

public static void MergeFrom(this IMessage message, ReadOnlySpan<byte> span)

Merges data from the given span into an existing message.

Parameters
NameDescription
messageIMessage

The message to merge the data into.

spanReadOnlySpanbyte

Span containing the data to merge, which must be protobuf-encoded binary data.

ToByteArray(IMessage)

public static byte[] ToByteArray(this IMessage message)

Converts the given message into a byte array in protobuf encoding.

Parameter
NameDescription
messageIMessage

The message to convert.

Returns
TypeDescription
byte

The message data as a byte array.

ToByteString(IMessage)

public static ByteString ToByteString(this IMessage message)

Converts the given message into a byte string in protobuf encoding.

Parameter
NameDescription
messageIMessage

The message to convert.

Returns
TypeDescription
ByteString

The message data as a byte string.

WriteDelimitedTo(IMessage, Stream)

public static void WriteDelimitedTo(this IMessage message, Stream output)

Writes the length and then data of the given message to a stream.

Parameters
NameDescription
messageIMessage

The message to write.

outputStream

The output stream to write to.

WriteTo(IMessage, IBufferWriter<byte>)

public static void WriteTo(this IMessage message, IBufferWriter<byte> output)

Writes the given message data to the given buffer writer in protobuf encoding.

Parameters
NameDescription
messageIMessage

The message to write to the stream.

outputIBufferWriterbyte

The stream to write to.

WriteTo(IMessage, Stream)

public static void WriteTo(this IMessage message, Stream output)

Writes the given message data to the given stream in protobuf encoding.

Parameters
NameDescription
messageIMessage

The message to write to the stream.

outputStream

The stream to write to.

WriteTo(IMessage, Span<byte>)

public static void WriteTo(this IMessage message, Span<byte> output)

Writes the given message data to the given span in protobuf encoding. The size of the destination span needs to fit the serialized size of the message exactly, otherwise an exception is thrown.

Parameters
NameDescription
messageIMessage

The message to write to the stream.

outputSpanbyte

The span to write to. Size must match size of the message exactly.