MembershipBaseObjectAllowedIPAddresses Property  | 
 Gets or sets the allowed IP addresses.
 
    Namespace: 
   Dundas.BI.AccountServices
    Assembly:
   Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.3.0.1000)
Syntaxpublic string? AllowedIPAddresses { get; set; }Public Property AllowedIPAddresses As String
	Get
	Set
public:
property String^ AllowedIPAddresses {
	String^ get ();
	void set (String^ value);
}member AllowedIPAddresses : string with get, set
Property Value
Type: 
StringThe allowed IP addresses.
Remarks
            HTTP requests associated with membership objects sessions to be restricted to a specified white list of IP addresses.
            The value is a comma-separated list containing any combination of IP addresses and/or IP address ranges.
            An IP address range may be specified using CIDR notation (e.g. 203.0.113.0/24) or as two addresses separated by a hyphen (e.g. 203.0.113.0-203.0.113.255).
            If the value is empty, no IP restrictions will be imposed by the application.
            
See Also