ConfigurationProperty.DefaultValue Proprietà

Definizione

Ottiene il valore predefinito per questa proprietà ConfigurationProperty.

Questa API supporta l'infrastruttura del prodotto e non è previsto che venga usata direttamente dal codice.

public:
 property System::Object ^ DefaultValue { System::Object ^ get(); };
public object DefaultValue { get; }
member this.DefaultValue : obj
Public ReadOnly Property DefaultValue As Object

Valore della proprietà

Classe Object di cui è possibile eseguire il cast sul tipo specificato dalla proprietà Type.

Esempio

Nell'esempio di codice seguente viene illustrato come ottenere per DefaultValue una proprietà specificata.

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)

Commenti

Il valore predefinito di un nuovo ConfigurationProperty oggetto viene passato al relativo costruttore. Lo stesso oggetto verrà restituito dalla DefaultValue proprietà .

Si applica a

Vedi anche