| H A D | CodedInputStream.cs | 58 public sealed class CodedInputStream : IDisposable
class 92 /// Creates a new CodedInputStream reading data from the given byte array.
94 public CodedInputStream(byte[] buffer) : this(null, ProtoPreconditions.CheckNotNull(buffer, "buffer"), 0, buffer.Length, true)
in CodedInputStream() method in Google.Protobuf.CodedInputStream 99 /// Creates a new <see cref="CodedInputStream"/> that reads from the given byte array slice.
101 public CodedInputStream(byte[] buffer, int offset, int length)
in CodedInputStream() method in Google.Protobuf.CodedInputStream 115 /// Creates a new <see cref="CodedInputStream"/> reading data from the given stream, which will be disposed
119 public CodedInputStream(Stream input) : this(input, false)
in CodedInputStream() method in Google.Protobuf.CodedInputStream 124 /// Creates a new <see cref="CodedInputStream"/> reading data from the given stream.
128 /// <c cref="CodedInputStream"/> is disposed; <c>false</c> to dispose of the given stream when the
130 public CodedInputStream(Strea method in Google.Protobuf.CodedInputStream 139 internal CodedInputStream(Stream input, byte[] buffer, int bufferPos, int bufferSize, bool leaveOpen) CodedInputStream() method in Google.Protobuf.CodedInputStream 161 internal CodedInputStream(Stream input, byte[] buffer, int bufferPos, int bufferSize, int sizeLimit, int recursionLimit, bool leaveOpen) CodedInputStream() method in Google.Protobuf.CodedInputStream [all...] |