D | CodedInputStream.cs | 58 public sealed class CodedInputStream : IDisposable class 94 …public CodedInputStream(byte[] buffer) : this(null, ProtoPreconditions.CheckNotNull(buffer, "buffe… in CodedInputStream() method in Google.Protobuf.CodedInputStream 101 public CodedInputStream(byte[] buffer, int offset, int length) in CodedInputStream() method in Google.Protobuf.CodedInputStream 119 public CodedInputStream(Stream input) : this(input, false) in CodedInputStream() method in Google.Protobuf.CodedInputStream 130 public CodedInputStream(Stream input, bool leaveOpen) in CodedInputStream() method in Google.Protobuf.CodedInputStream 139 …internal CodedInputStream(Stream input, byte[] buffer, int bufferPos, int bufferSize, bool leaveOp… in CodedInputStream() method in Google.Protobuf.CodedInputStream 161 …internal CodedInputStream(Stream input, byte[] buffer, int bufferPos, int bufferSize, int sizeLimi… in CodedInputStream() method in Google.Protobuf.CodedInputStream 191 … public static CodedInputStream CreateWithLimits(Stream input, int sizeLimit, int recursionLimit) in CreateWithLimits() 194 … return new CodedInputStream(input, new byte[BufferSize], 0, 0, sizeLimit, recursionLimit, false); in CreateWithLimits()
|