Oracle® Coherence .NET API Reference Release 3.7.1
E22844-03
Assembly: Coherence (in Coherence.dll) Version: 3.7.1.23 (3.7.1.23)
E22844-03
Gets or sets the IPofContext object used by this
PofStreamReader to deserialize user types from a POF
stream.
Namespace:
Tangosol.IO.PofAssembly: Coherence (in Coherence.dll) Version: 3.7.1.23 (3.7.1.23)
Syntax
| C# |
|---|
public virtual IPofContext PofContext { get; set; } |
Field Value
The IPofContext object that contains user type meta-data.Implements
IPofReader..::.PofContext
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;
}