AccountDataAllowedIPAddresses Property  | 
 Gets or sets the allowed IP addresses.
 
    Namespace: 
   Dundas.BI.WebApi.Models
    Assembly:
   Dundas.BI.WebApiCore (in Dundas.BI.WebApiCore.dll) Version: 2.0.0.0 (25.3.0.1000)
Syntax[DataMemberAttribute(Name = "allowedIPAddresses", EmitDefaultValue = false)]
public string? AllowedIPAddresses { get; set; }<DataMemberAttribute(Name := "allowedIPAddresses", EmitDefaultValue := false)>
Public Property AllowedIPAddresses As String
	Get
	Set
public:
[DataMemberAttribute(Name = L"allowedIPAddresses", EmitDefaultValue = false)]
property String^ AllowedIPAddresses {
	String^ get ();
	void set (String^ value);
}[<DataMemberAttribute(Name = "allowedIPAddresses", EmitDefaultValue = false)>]
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