C# 클래스 SobekCM.Tools.IpRangeUtilities.SingleIpRangeV4

Single IP address range used in the solution for quick IP range checks to support IP restrictions on the SobekCM engine
파일 보기 프로젝트 열기: MarkVSullivan/SobekCM-Web-Application 1 사용 예제들

공개 메소드들

메소드 설명
CompareTo ( ComparableIpAddress IpAddress ) : int

Compares a provided IP address against this range of IPs

SingleIpRangeV4 ( string SingleIpAddress ) : System

Constructor for a new instance of the SingleIpRangeV4 class

SingleIpRangeV4 ( string StartIpAddress, string EndIpAddress ) : System

Constructor for a new instance of the SingleIpRangeV4 class

SingleIpRangeV4 ( ulong SingleIpAddress ) : System

Constructor for a new instance of the SingleIpRangeV4 class

SingleIpRangeV4 ( ulong StartIpAddress, ulong EndIpAddress ) : System

Constructor for a new instance of the SingleIpRangeV4 class

메소드 상세

CompareTo() 공개 메소드

Compares a provided IP address against this range of IPs
public CompareTo ( ComparableIpAddress IpAddress ) : int
IpAddress ComparableIpAddress IP address to compare to this range
리턴 int

SingleIpRangeV4() 공개 메소드

Constructor for a new instance of the SingleIpRangeV4 class
public SingleIpRangeV4 ( string SingleIpAddress ) : System
SingleIpAddress string IP address, as a string
리턴 System

SingleIpRangeV4() 공개 메소드

Constructor for a new instance of the SingleIpRangeV4 class
public SingleIpRangeV4 ( string StartIpAddress, string EndIpAddress ) : System
StartIpAddress string First IP address in the range (as a string)
EndIpAddress string Last IP address in the range (as a string)
리턴 System

SingleIpRangeV4() 공개 메소드

Constructor for a new instance of the SingleIpRangeV4 class
public SingleIpRangeV4 ( ulong SingleIpAddress ) : System
SingleIpAddress ulong IP address, as an unsigned long
리턴 System

SingleIpRangeV4() 공개 메소드

Constructor for a new instance of the SingleIpRangeV4 class
public SingleIpRangeV4 ( ulong StartIpAddress, ulong EndIpAddress ) : System
StartIpAddress ulong First IP address in the range (as an unsigned long)
EndIpAddress ulong Last IP address in the range (as an unsigned long)
리턴 System