Creating a Windows service with user notification in C #?

I want to create a windows service this way:

-> It accepts input information ...

-> at the end of the service, it notifies the user of the completion of the process.

How to do this using a Windows service in C # .Net?

thanks

0
source share
2 answers

I think you are asking three questions:

  • How to create a Windows service
  • How to open and read data from a database
  • How can I notify the user

Answers:

  • Example
  • If you can use .NET 3.5 and SQL Server 2005 or 2008, I would recommend LINQ to SQL
  • The Windows service does not have a user interface, so you need to think about how you want to notify the user. The easiest option is to send them an email .
+1
source

Based on some of the tips you provided in your question, I think you should probably take a look at WCF:

http://msdn.microsoft.com/en-us/netframework/aa663324.aspx

0
source

Source: https://habr.com/ru/post/1347218/


All Articles