DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
XmlModule.cs
Go to the documentation of this file.
1 using System;
2 
3 using Deveel.Data.Services;
4 
5 namespace Deveel.Data.Xml {
7  public string ModuleName {
8  get { return "Deveel.XML"; }
9  }
10 
11  public string Version {
12  get { return typeof (XmlModule).Assembly.GetName().Version.ToString(); }
13  }
14 
15  public void Register(IScope systemScope) {
16  systemScope.Register<XmlTypeResolver>();
17  systemScope.RegisterInstance(XmlFunctions.Resolver);
18  }
19  }
20 }
void Register(IScope systemScope)
Definition: XmlModule.cs:15
static IRoutineResolver Resolver
Definition: XmlFunctions.cs:11
void Register(ServiceRegistration registration)