Lines Matching defs:leaveOpen
68 private readonly bool leaveOpen;
95 leaveOpen = true; // Simple way of avoiding trying to dispose of a null reference
98 private CodedOutputStream(Stream output, byte[] buffer, bool leaveOpen)
104 this.leaveOpen = leaveOpen;
130 /// <param name="leaveOpen">If <c>true</c>, <paramref name="output"/> is left open when the returned <c>CodedOutputStream</c> is disposed;
132 public CodedOutputStream(Stream output, bool leaveOpen) : this(output, DefaultBufferSize, leaveOpen)
142 /// <param name="leaveOpen">If <c>true</c>, <paramref name="output"/> is left open when the returned <c>CodedOutputStream</c> is disposed;
144 public CodedOutputStream(Stream output, int bufferSize, bool leaveOpen) : this(output, new byte[bufferSize], leaveOpen)
697 /// use a constructor overload with a <c>leaveOpen</c> parameter. If this instance does not
709 if (!leaveOpen)