ActionDataPlaceholderAsUrl Property |
Gets or sets a value indicating whether the placeholder should be treated as a full URL instead of just a query string portion
of the URL. This means that encoding will not be applied, which allows values like "http://somesite.com/" to be used as a value,
or "http://[placeholder]" where placeholder is a valid URL.
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 = "placeholderAsUrl", EmitDefaultValue = false)]
public bool PlaceholderAsUrl { get; set; }
<DataMemberAttribute(Name := "placeholderAsUrl", EmitDefaultValue := false)>
Public Property PlaceholderAsUrl As Boolean
Get
Set
public:
[DataMemberAttribute(Name = L"placeholderAsUrl", EmitDefaultValue = false)]
property bool PlaceholderAsUrl {
bool get ();
void set (bool value);
}
[<DataMemberAttribute(Name = "placeholderAsUrl", EmitDefaultValue = false)>]
member PlaceholderAsUrl : bool with get, set
Property Value
Type:
Boolean if the placeholder should be treated as a URL; otherwise,
.
See Also