Check if an IP address range can still access based on a set of rules note: this set is typically the list of IP filter rules minus a proposed delete

Namespace: DotNetNuke.Entities.Host
Assembly: DotNetNuke (in DotNetNuke.dll)

Syntax

C#
public bool CanIPStillAccess(
	string myip,
	IList<IPFilterInfo> filterList
)
Visual Basic
Public Function CanIPStillAccess ( 
	myip As String,
	filterList As IList(Of IPFilterInfo)
) As Boolean

Parameters

myip
Type: System..::..String
IP address
filterList
Type: System.Collections.Generic..::..IList<(Of <(<'IPFilterInfo>)>)>
list of IP filters

Return Value

true if IP can access, false otherwise

Implements

IIPFilterController..::..CanIPStillAccess(String, IList<(Of <<'(IPFilterInfo>)>>))

See Also