CSMongo.MongoDocument.ToBsonByteArray C# (CSharp) Method

ToBsonByteArray() public method

Handles rendering the bytes required to create this type
public ToBsonByteArray ( ) : byte[]
return byte[]
        public override byte[] ToBsonByteArray()
        {
            if (this.Id == null) { this.GenerateId(); }
            return base.ToBsonByteArray();
        }