Lines Matching defs:length
85 /// <param name="length">The length of the slice to parse.</param>
87 public IMessage ParseFrom(byte[] data, int offset, int length)
90 message.MergeFrom(data, offset, length, DiscardUnknownFields, Extensions);
132 /// Parses a length-delimited message from the given stream.
135 /// The stream is expected to contain a length and then the data. Only the amount of data
136 /// specified by the length will be consumed.
272 /// <param name="length">The length of the slice to parse.</param>
274 public new T ParseFrom(byte[] data, int offset, int length)
277 message.MergeFrom(data, offset, length, DiscardUnknownFields, Extensions);
319 /// Parses a length-delimited message from the given stream.
322 /// The stream is expected to contain a length and then the data. Only the amount of data
323 /// specified by the length will be consumed.