Update the IP information of the gateway (selected gateway types)

Namespace: Monnit.Mine
Assembly: MonnitMineAPI (in MonnitMineAPI.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public void UpdateGatewayIP(
	string staticIP,
	string subnet,
	string defaultRouter,
	string primaryDNS,
	string secondaryDNS
)
Visual Basic
Public Sub UpdateGatewayIP ( 
	staticIP As String,
	subnet As String,
	defaultRouter As String,
	primaryDNS As String,
	secondaryDNS As String
)
Visual C++
public:
void UpdateGatewayIP(
	String^ staticIP, 
	String^ subnet, 
	String^ defaultRouter, 
	String^ primaryDNS, 
	String^ secondaryDNS
)
F#
member UpdateGatewayIP : 
        staticIP : string * 
        subnet : string * 
        defaultRouter : string * 
        primaryDNS : string * 
        secondaryDNS : string -> unit 

Parameters

staticIP
Type: System..::..String
IP the gateway will use on the local area network.
subnet
Type: System..::..String
Subnet the gateway will use to communication on the local area network.
defaultRouter
Type: System..::..String
Default router the gateway will send information to if it needs to communicate outside the local area network.
primaryDNS
Type: System..::..String
DNS server used to lookup server host names. (Not used is host is configured with IP Address.)
secondaryDNS
Type: System..::..String
Secondary DNS server used to lookup host names if Primary DNS server is not available.

See Also