Click or drag to resize

XmlHelperCreateDelegateTDel Method

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Creates a delegate from a given configuration. IXmlElement of the following structure:
            $lt;delegate>
               <static/> | <instance/>
               <class-name></class-name>
               <delegate-type></delegate-type>
               <method-name></method-name>
            </delegate>
            

Namespace:  Tangosol.Run.Xml
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public static TDel CreateDelegate<TDel>(
	IXmlElement xmlDelegate
)
where TDel : class

Parameters

xmlDelegate
Type: Tangosol.Run.XmlIXmlElement
The XML element that contains the instantiation info.

Type Parameters

TDel
The type of the delegate.

Return Value

Type: TDel
A delegate obtained by the XML configutation
See Also