Пример #1
0
        public void SetNetMask(string gateway)
        {
            IPv4 tmp = new IPv4(gateway);

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

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

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

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