-
Windows Services Q
Hi there
I am writing a simple Windows Service.
Basically I want to know, is it possible for a C# Windows App to call A METHOD in that service?
for example, my service may have a method which returns back a string like "hello"
When I have added that service in my Windows C# app, I cannot seem to find that method, even though I made it public so its accessible.
How can I call a method on a Windows Service I have made from within a C# Windows app?
Thanks!
-
Re: Windows Services Q
In the Windows app, you have to reference the file that the method is in
-
Re: Windows Services Q
add reference? because I dragged and dropped the Windows Service onto the designer... and that wasnt able to see the methods