ISupportStreamSerializationT Interface
Namespace: Gemstone.IO.ParsingAssembly: Gemstone.IO (in Gemstone.IO.dll) Version: 1.0.128 -- Release Build+2960d3f3619fdc53cad514a51817286dcfb19027
public interface ISupportStreamSerialization<T>
Public Interface ISupportStreamSerialization(Of T)
generic<typename T>
public interface class ISupportStreamSerialization
JavaScript does not support generic types or methods.
Type Parameters
- T
- Type that implements stream serialization.
This interface exists to allow classes to properly define the needed method signatures for using
StreamSerializationT operations. However, as long as the
ReadFrom(Stream)
and
WriteTo(Stream, T) methods exist on a class with the proper signature, actual implementation
of this interface is optional.