Google.Protobuf.CodedOutputStream.CodedOutputStream C# (CSharp) Method

CodedOutputStream() public method

Creates a new CodedOutputStream which write to the given stream, and disposes of that stream when the returned CodedOutputStream is disposed.
public CodedOutputStream ( Stream output ) : System
output Stream The stream to write to. It will be disposed when the returned CodedOutputStream is disposed.
return System
        public CodedOutputStream(Stream output) : this(output, DefaultBufferSize, false)
        {
        }

Same methods

CodedOutputStream::CodedOutputStream ( Stream output, bool leaveOpen ) : System
CodedOutputStream::CodedOutputStream ( Stream output, byte buffer, bool leaveOpen ) : System
CodedOutputStream::CodedOutputStream ( Stream output, int bufferSize ) : System
CodedOutputStream::CodedOutputStream ( Stream output, int bufferSize, bool leaveOpen ) : System
CodedOutputStream::CodedOutputStream ( byte flatArray ) : System
CodedOutputStream::CodedOutputStream ( byte buffer, int offset, int length ) : System