MongoDB.Bson.LazyBsonDocument.DeepClone C# (CSharp) 메소드

DeepClone() 공개 메소드

Creates a deep clone of the document (see also Clone).
public DeepClone ( ) : BsonValue
리턴 BsonValue
        public override BsonValue DeepClone()
        {
            if (_slice != null)
            {
                return new LazyBsonDocument(CloneSlice());
            }
            else
            {
                return base.DeepClone();
            }
        }