Lines Matching defs:array
50 /// Immutable array of bytes.
64 /// Constructs a new ByteString from the given byte array. The array is
74 /// Internal use only. Ensure that the provided array is not mutated and belongs to this instance.
82 /// Constructs a new ByteString from the given byte array. The array is
143 /// Converts this <see cref="ByteString"/> into a byte array.
145 /// <remarks>The data is copied - changes to the returned array will not be reflected in this <c>ByteString</c>.</remarks>
146 /// <returns>A byte array with the same data as this <c>ByteString</c>.</returns>
221 /// Constructs a <see cref="ByteString" /> from the given array. The contents
222 /// are copied, so further modifications to the array will not
233 /// Constructs a <see cref="ByteString" /> from a portion of a byte array.
329 // We trust CodedInputStream not to reveal the provided byte array or modify it
418 /// Copies the entire byte array to the destination array provided at the offset specified.
420 public void CopyTo(byte[] array, int position)
422 ByteArray.Copy(bytes, 0, array, position, bytes.Length);
426 /// Writes the entire byte array to the provided stream