Tagged Questions

6
votes
2answers
872 views

How to send a custom command to a .Net windows Service from.Net code?

As in the following link, one can stop, start, and "stop, then start" a service using C# code. http://www.csharp-examples.net/restart-windows-service/ I have baked a .Net service that does implement ...
5
votes
5answers
134 views

Is there a more correct type for passing in the file path and file name to a method

What I mean by this question is, when you need to store or pass a URL around, using a string is probably a bad practice, and a better approach would be to use a URI type. However it is so easy to ...
0
votes
2answers
641 views

KISS: Simple C# application which communicates with a RESTful web service

Following the KISS principle, I suddenly realised the following: In .NET, you can use the Entity Model Framework to wrap around a database. This model can be exposed as a web service through WCF. ...