.NET Should i use KillAsync() ?
-
Hi, when i new create an instance of the reporting service as a utility should i
use rs.KillAsync() when im done or does this only applies to as a web server?var rs =new LocalReporting()
.UseBinary(JsReportBinary.GetBinary())
.Configure(cfg => cfg.AllowLocalFilesAccess().BaseUrlAsWorkingDirectory())
.AsUtility()
.Create();
-
We call Kill on the process exit automatically. So you don't have to call it explicitly.
-
Oka thanks