Oracle® Coherence .NET API Reference Release 3.7.1
E22844-03

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: 3.7.1.23 (3.7.1.23)

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

[Missing <typeparam name="TDel"/> documentation for "M:Tangosol.Run.Xml.XmlHelper.CreateDelegate``1(Tangosol.Run.Xml.IXmlElement)"]

Return Value

A delegate obtained by the XML configutation

See Also