ChainedExtractorExtract Method  | 
.NET API Reference for Oracle® Coherence Community Edition 
 (14.1.1.0)
E55634-01
 
            Extract the value from the passed object.
            
 
    Namespace: 
   Tangosol.Util.Extractor
    Assembly:
   Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntaxpublic override Object Extract(
	Object target
)
Parameters
- target
 - Type: SystemObject
            An object to retrieve the value from.
             
Return Value
Type: 
Object
            The extracted value as an object; 
null is an acceptable
            value.
            
Implements
IValueExtractorExtract(Object)
Remarks
            The underlying extractors are applied sequentially, so a result
            of a previous extractor serves as a target object for a next one.
            A value of null prevents any further extractions and is
            returned immediately.
            
See Also