ISupportBinaryImageSpanTryGenerateBinaryImage Method
            Attempts to write this object's binary image to the specified destination span.
            
Namespace: Gemstone.IO.ParsingAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.150 -- Release Build+64e3b411e1abfbd2d4d8a81e850c3909a0ce8731
bool TryGenerateBinaryImage(
	Span<byte> destination,
	out int written
)
Function TryGenerateBinaryImage ( 
	destination As Span(Of Byte),
	<OutAttribute> ByRef written As Integer
) As Boolean
bool TryGenerateBinaryImage(
	Span<unsigned char> destination, 
	[OutAttribute] int% written
)
function TryGenerateBinaryImage(destination, written);
- destination  SpanByte
 - The span to which the binary image will be written.
 - written  Int32
 - When this method returns, contains the number of bytes written to destination.
 
Booleantrue if the binary image was successfully written to 
destination; 
            otherwise, 
false if the 
destination span is too small.