ConfigurationProperty.DefaultValue Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the default value for this ConfigurationProperty property.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
property System::Object ^ DefaultValue { System::Object ^ get(); };
public object DefaultValue { get; }
member this.DefaultValue : obj
Public ReadOnly Property DefaultValue As Object
Property Value
An Object that can be cast to the type specified by the Type property.
Examples
The following code example shows how to get the DefaultValue for a specified property.
string defaultValue = _MaxIdleTime.DefaultValue.ToString();
Console.WriteLine("MaxIdleTime default value: {0}",
defaultValue);
Dim defaultValue As String = _
_MaxIdleTime.DefaultValue.ToString()
Console.WriteLine( _
"MaxIdleTime default value: {0}", defaultValue)
Remarks
The default value of a new ConfigurationProperty object is passed into its constructor. That same object will be returned by the DefaultValue property.