Example #1
0
        public void SetNetMask(string gateway)
        {
            IPv4 tmp = new IPv4(gateway);

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

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

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

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