DefaultSettingValueAttribute(String) Constructor

Definition

Initializes an instance of the DefaultSettingValueAttribute class.

public:
 DefaultSettingValueAttribute(System::String ^ value);
public DefaultSettingValueAttribute (string value);
new System.Configuration.DefaultSettingValueAttribute : string -> System.Configuration.DefaultSettingValueAttribute
Public Sub New (value As String)

Parameters

value
String

A String that represents the default value for the property.

Remarks

The supplied string must be a value that is compatible with the available serialization mechanism associated with the property type. For example, if the property is of type Color, then a value of "Azure" would be valid.

Caution

The default values specified by this attribute are stored as plain text in the resultant compiled .exe or .dll file. Therefore these default values are inherently insecure.

Applies to

See also