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 (24.3.0.1000)
Syntax
[DataMemberAttribute(Name = "allowedIPAddresses", EmitDefaultValue = false)]
public string AllowedIPAddresses { get; set; }

Property Value

Type: String
The 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