encodeDocument() private méthode

private encodeDocument ( MemoryStream ms, BSONObject obj ) : void
ms System.IO.MemoryStream
obj BSONObject
Résultat void
Exemple #1
0
        public static byte[] Dump(BSONObject obj)
        {
            SimpleBSON   bson = new SimpleBSON();
            MemoryStream ms   = new MemoryStream();

            bson.encodeDocument(ms, obj);

            byte[] buf = new byte[ms.Position];
            ms.Seek(0, SeekOrigin.Begin);
            ms.Read(buf, 0, buf.Length);

            return(buf);
        }
		public static byte[] Dump(BSONObject obj) {
			
			SimpleBSON bson = new SimpleBSON ();
			MemoryStream ms = new MemoryStream ();

			bson.encodeDocument (ms, obj);

			byte[] buf = new byte[ms.Position];
			ms.Seek (0, SeekOrigin.Begin);  
			ms.Read (buf, 0, buf.Length);

			return buf;
		}