PofStreamReaderPofContext Property |
Namespace: Tangosol.IO.Pof
public virtual IPofContext PofContext { get; set; }
IPofContext ctxOrig = reader.PofContext;
try
{
// switch to another IPofContext
reader.PofContext = ...;
// read POF data using the reader
}
finally
{
// restore the original PofContext
reader.PofContext = ctxOrig;
}