Lines Matching +full:merge +full:- +full:stream
2 // Protocol Buffers - Google's data interchange format
4 // https://developers.google.com/protocol-buffers/
51 /// <param name="message">The message to merge the data into.</param>
52 … /// <param name="data">The data to merge, which must be protobuf-encoded binary data.</param>
59 /// <param name="message">The message to merge the data into.</param>
60 …/// <param name="data">The data containing the slice to merge, which must be protobuf-encoded bina…
61 /// <param name="offset">The offset of the slice to merge.</param>
62 /// <param name="length">The length of the slice to merge.</param>
69 /// <param name="message">The message to merge the data into.</param>
70 … /// <param name="data">The data to merge, which must be protobuf-encoded binary data.</param>
75 /// Merges data from the given stream into an existing message.
77 /// <param name="message">The message to merge the data into.</param>
78 …/// <param name="input">Stream containing the data to merge, which must be protobuf-encoded binary…
79 public static void MergeFrom(this IMessage message, Stream input) => in MergeFrom()
85 /// <param name="message">The message to merge the data into.</param>
86 …/// <param name="span">Span containing the data to merge, which must be protobuf-encoded binary da…
92 /// Merges length-delimited data from the given stream into an existing message.
95 /// The stream is expected to contain a length and then the data. Only the amount of data
98 /// <param name="message">The message to merge the data into.</param>
99 …/// <param name="input">Stream containing the data to merge, which must be protobuf-encoded binary…
100 public static void MergeDelimitedFrom(this IMessage message, Stream input) => in MergeDelimitedFrom()
119 /// Writes the given message data to the given stream in protobuf encoding.
121 /// <param name="message">The message to write to the stream.</param>
122 /// <param name="output">The stream to write to.</param>
123 public static void WriteTo(this IMessage message, Stream output) in WriteTo()
133 /// Writes the length and then data of the given message to a stream.
136 /// <param name="output">The output stream to write to.</param>
137 public static void WriteDelimitedTo(this IMessage message, Stream output) in WriteDelimitedTo()
161 /// <param name="message">The message to write to the stream.</param>
162 /// <param name="output">The stream to write to.</param>
179 /// <param name="message">The message to write to the stream.</param>
285 …internal static void MergeFrom(this IMessage message, Stream input, bool discardUnknownFields, Ext… in MergeFrom()
316 …internal static void MergeDelimitedFrom(this IMessage message, Stream input, bool discardUnknownFi… in MergeDelimitedFrom()
321 Stream limitedStream = new LimitedInputStream(input, size); in MergeDelimitedFrom()