2010-04-16 11:51:46 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
2010-04-21 13:48:40 +02:00
|
|
|
|
namespace NetMonitorClient
|
2010-04-16 11:51:46 +02:00
|
|
|
|
{
|
|
|
|
|
class ServiceControl
|
|
|
|
|
{
|
|
|
|
|
private System.ServiceProcess.ServiceController sc;
|
|
|
|
|
public ServiceControl(System.ServiceProcess.ServiceController Controller)
|
|
|
|
|
{
|
|
|
|
|
this.sc = Controller;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal void setNetworkAuto()
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal void setNetworkIp(string ip, string subnet, string gateway)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal void setNetworkDNS(string dns)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal void setNetworkWINS(string wins)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|