Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IXsltContextFunction.cs « System.Xml.Xsl « System.XML « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4f2dc25efd05f7dc691f07fc6861a41b50f94d8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// System.Xml.Xsl.IXsltContextFunction
//
// Author: Tim Coleman <tim@timcoleman.com>
// (C) Copyright 2002 Tim Coleman

using System;
using System.Xml.XPath;

namespace System.Xml.Xsl
{
	public interface IXsltContextFunction
	{
		#region Properties

		XPathResultType [] ArgTypes { get; }
		int Maxargs { get; }
		int Minargs { get; }
		XPathResultType ReturnType { get; }

		#endregion

		#region Methods

		object Invoke (XsltContext xsltContext, object [] args, XPathNavigator docContext);

		#endregion
	}
}