37 lines
884 B
C#
37 lines
884 B
C#
|
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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|