|
EmbeddedResourcePathProviderAllowOverrides Property
|
Gets a value indicating if embedded files can be overridden.
Namespace: GSF.Web.HostingAssembly: GSF.Web (in GSF.Web.dll) Version: 2.4.207-beta
Syntax public virtual bool AllowOverrides { get; }
Public Overridable ReadOnly Property AllowOverrides As Boolean
Get
public:
virtual property bool AllowOverrides {
bool get ();
}
abstract AllowOverrides : bool with get
override AllowOverrides : bool with get
function get_AllowOverrides();
View SourceProperty Value
Boolean if embedded files can be overridden by other
files (e.g., if filesystem files override embedded files);
if not. Defaults to
.
Remarks
This property uses the AppSettings
key ConfigKeyAllowOverrides
to determine if overrides are allowed. If the key is present, it is
parsed to a Boolean and that value is returned.
If the key is not present or if any error occurs during the parsing,
is returned.
See Also