Gets the license text from the default location.
License string
Make sure you do not make any changes in Data and Signature tags as license validation will fail in this case.
public class MyEngine : Engine
{
...
public override string License
{
get
{
TextReader reader = File.OpenText(
HttpContext.Current.Request.PhysicalApplicationPath + "License.lic");
string license = reader.ReadToEnd();
reader.Close();
return license;
}
}
...
}
Engine Class | ITHit.WebDAV.Server Namespace