Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Invoke()

object System.Xml.Xsl.Runtime.XmlExtensionFunction.Invoke ( object extObj,
object[] args )
inline

Definition at line 164 of file XmlExtensionFunction.cs.

165 {
166 try
167 {
168 return _meth.Invoke(extObj, args);
169 }
171 {
172 throw new XslTransformException(ex.InnerException, System.SR.XmlIl_ExtensionError, _name);
173 }
174 catch (Exception ex2)
175 {
176 if (!XmlException.IsCatchableException(ex2))
177 {
178 throw;
179 }
180 throw new XslTransformException(ex2, System.SR.XmlIl_ExtensionError, _name);
181 }
182 }
object? Invoke(object? obj, object?[]? parameters)
static string XmlIl_ExtensionError
Definition SR.cs:2050
Definition SR.cs:7

References System.Xml.Xsl.Runtime.XmlExtensionFunction._meth, System.Xml.Xsl.Runtime.XmlExtensionFunction._name, System.Xml.Dictionary, System.Reflection.MethodBase.Invoke(), System.Xml.XmlException.IsCatchableException(), and System.SR.XmlIl_ExtensionError.