Esempio n. 1
0
        public void SetNetMask(string gateway)
        {
            IPv4 tmp = new IPv4(gateway);

            this.SetNetMask(tmp.a, tmp.b, tmp.c, tmp.d);

            tmp = null;
        }
Esempio n. 2
0
 public void SetGateway(IPv4 gateway)
 {
     this.gateway = gateway;
 }
Esempio n. 3
0
 public void SetGateway(string gateway)
 {
     this.gateway = new IPv4(gateway);
 }
Esempio n. 4
0
 public void SetAddress(int a, int b, int c, int d)
 {
     this.address = new IPv4(a, b, c, d);
 }
Esempio n. 5
0
 public void SetAddress(IPv4 address)
 {
     this.address = address;
 }
Esempio n. 6
0
 public void SetAddress(int a, int b, int c, int d)
 {
     this.address = new IPv4(a, b, c, d);
 }
Esempio n. 7
0
 public void SetSecondaryDNS(string dns2)
 {
     this.dns2 = new IPv4(dns2);
 }
Esempio n. 8
0
 public void SetPrimaryDNS(string dns1)
 {
     this.dns1 = new IPv4(dns1);
 }
Esempio n. 9
0
 public void SetSecondaryDNS(string dns2)
 {
     this.dns2 = new IPv4(dns2);
 }
Esempio n. 10
0
 public void SetPrimaryDNS(int a, int b, int c, int d)
 {
     this.dns1 = new IPv4(a, b, c, d);
 }
Esempio n. 11
0
 public void SetPrimaryDNS(string dns1)
 {
     this.dns1 = new IPv4(dns1);
 }
Esempio n. 12
0
 public void SetGateway(int a, int b, int c, int d)
 {
     this.gateway = new IPv4(a, b, c, d);
 }
Esempio n. 13
0
 public void SetGateway(IPv4 gateway)
 {
     this.gateway = gateway;
 }
Esempio n. 14
0
 public void SetGateway(string gateway)
 {
     this.gateway = new IPv4(gateway);
 }
Esempio n. 15
0
 public void SetGateway(int a, int b, int c, int d)
 {
     this.gateway = new IPv4(a, b, c, d);
 }
Esempio n. 16
0
 public void SetSecondaryDNS(int a, int b, int c, int d)
 {
     this.dns2 = new IPv4(a, b, c, d);
 }
Esempio n. 17
0
        public void SetNetMask(string gateway)
        {
            IPv4 tmp = new IPv4(gateway);

            this.SetNetMask(tmp.a, tmp.b, tmp.c, tmp.d);

            tmp = null;
        }
Esempio n. 18
0
 public void SetAddress(string address)
 {
     this.address = new IPv4(address);
 }
Esempio n. 19
0
 public void SetPrimaryDNS(int a, int b, int c, int d)
 {
     this.dns1 = new IPv4(a, b, c, d);
 }
Esempio n. 20
0
 public void SetAddress(string address)
 {
     this.address = new IPv4(address);
 }
Esempio n. 21
0
 public void SetSecondaryDNS(int a, int b, int c, int d)
 {
     this.dns2 = new IPv4(a, b, c, d);
 }
Esempio n. 22
0
 public void SetAddress(IPv4 address)
 {
     this.address = address;
 }