Newtonsoft.Json.Bson.BsonBinaryWriter.Flush C# (CSharp) 메소드

Flush() 공개 메소드

public Flush ( ) : void
리턴 void
    public void Flush()
    {
      _writer.Flush();
    }

Usage Example

예제 #1
0
 /// <summary>
 /// Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
 /// </summary>
 public override void Flush()
 {
     _writer.Flush();
 }