MongoDB.Bson.RawBsonDocument.DeserializeRawBsonDocument C# (CSharp) 메소드

DeserializeRawBsonDocument() 개인적인 메소드

private DeserializeRawBsonDocument ( MongoDB.Bson.IO.BsonBinaryReader bsonReader ) : RawBsonDocument
bsonReader MongoDB.Bson.IO.BsonBinaryReader
리턴 RawBsonDocument
        private RawBsonDocument DeserializeRawBsonDocument(BsonBinaryReader bsonReader)
        {
            var slice = bsonReader.ReadRawBsonDocument();
            var nestedDocument = new RawBsonDocument(slice);
            _disposableItems.Add(nestedDocument);
            return nestedDocument;
        }