PofStreamReaderPofContext Property |
.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Gets or sets the
IPofContext object used by this
PofStreamReader to deserialize user types from a POF
stream.
Namespace:
Tangosol.IO.Pof
Assembly:
Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntaxpublic virtual IPofContext PofContext { get; set; }
Property Value
Type:
IPofContext
The
IPofContext object that contains user type meta-data.
Implements
IPofReaderPofContext
Remarks
This is an advanced propertie that should be used with
care.
For example, if this method is being used to switch to another
IPofContext mid-POF stream, it is important to eventually
restore the original
IPofContext. For example:
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;
}
See Also