IPPermission.Check Method
When overridden in a derived class, the Check method determines whether the specified IP address is on the Allow list, the Deny list, or neither list.
Namespace: Microsoft.Exchange.Data.Transport
Assembly: Microsoft.Exchange.Data.Transport (in microsoft.exchange.data.transport.dll)
Syntax
'Declaration
Public MustOverride Function Check ( _
ipAddress As IPAddress _
) As PermissionCheckResults
public abstract PermissionCheckResults Check (
IPAddress ipAddress
)
public:
virtual PermissionCheckResults Check (
IPAddress^ ipAddress
) abstract
public abstract PermissionCheckResults Check (
IPAddress ipAddress
)
public abstract function Check (
ipAddress : IPAddress
) : PermissionCheckResults
Parameters
- ipAddress
The IP address to check.
Return Value
The Check method returns one of the valid PermissionCheckResults enumeration values.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
Development Platforms
Windows XP Professional with Service Pack 2 (SP2), Windows Server 2003,
Target Platforms
Windows Server 2003
See Also