PofExtractor Constructor (Type, Int32) |
.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Constructs a PofExtractor based on a property index.
Namespace:
Tangosol.Util.Extractor
Assembly:
Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntaxpublic PofExtractor(
Type type,
int index
)
Parameters
- type
- Type: SystemType
The required type of the extracted value or null if the
type is to be inferred from the serialized state.
- index
- Type: SystemInt32
Property index.
Remarks
This constructor is equivalent to:
PofExtractor extractor =
new PofExtractor(type, new SimplePofPath(index), VALUE);
See Also