ResXResourceWriterSafeMode Property

Gets or sets whether it is prohibited to load assemblies when writing ResXDataNode instances whose raw .resx content is needed to be regenerated and whose value has not been deserialized yet. This can occur only if CompatibleFormat is , and when the ResXDataNode instances to write had been read from another .resx source previously.
Default value: .

Definition

Namespace: KGySoft.Resources
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 8.1.0
C#
public bool SafeMode { get; set; }

Property Value

Boolean

Remarks

This property affects AddResource(ResXDataNode) and AddMetadata(ResXDataNode) methods only when CompatibleFormat is , and the ResXDataNode to write contains no deserialized value but only raw .resx data that is not compatible with the System.Resources.ResXResourceReader class.

See Also