Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-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: 12.2.1.4014 (12.2.1.4014)

Syntax

C#
public static TDel CreateDelegate<TDel>(
	IXmlElement xmlDelegate
)
where TDel : class

Parameters

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

Type Parameters

TDel
The type of the delegate.

Return Value

A delegate obtained by the XML configutation

See Also