Serial Framework C++ Edition

◆ wclStreamOwnership

The enumeration indicates whether a stream object should be freed by the object that uses it.

Enumerator
soReference 

The stream is an independent object with a different Owner. The object that uses the stream does not free it when it is destroyed.

soOwned 

The stream is owned by the object that uses it (and exists solely for that object). The object that uses the stream frees the associated stream when it no longer needs to use the stream.