netmonitor/NetMonitorCliend/ServiceControl.cs

37 lines
884 B
C#
Raw Normal View History

2010-04-16 11:51:46 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NetMonitorCliend
{
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();
}
}
}