IXmlElementGetSafeElement Method  | 
.NET API Reference for Oracle® Coherence Community Edition 
 (14.1.1.0)
E55634-01
 
            Return the specified child element using the same path notation
            as supported by 
FindElement(String), but return a
            read-only element if the specified element does not exist.
            
 
    Namespace: 
   Tangosol.Run.Xml
    Assembly:
   Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
SyntaxIXmlElement GetSafeElement(
	string path
)
Parameters
- path
 - Type: SystemString
            Element path.
             
Return Value
Type: 
IXmlElement
            The specified element (never 
null) as an object
            implementing IXmlElement for read-only use.
            
RemarksThis method never returns null.
            This is a convenience method. Elements are accessed and
            manipulated via the list returned from
            
ElementList.
            If multiple child elements exist that have the specified name,
            then the behavior of this method is undefined, and it is
            permitted to return any one of the matching elements, to return
            
null, or to throw an arbitrary runtime exception.
            
 
See Also