IPofWriterPofContext Property |
Namespace: Tangosol.IO.Pof
IPofContext PofContext { get; set; }
IPofContext ctxOrig = writer.PofContext;
try
{
// switch to another IPofContext
writer.PofContext = ...;
// write POF data using the writer
}
finally
{
// restore the original PofContext
writer.PofContext = ctxOrig;
}