IsolatedStorageSettings.TryGetValue(Of T) Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets a value for the specified key.
Assembly: System.Windows (in System.Windows.dll)
'Declaration Public Function TryGetValue(Of T) ( _ key As String, _ <OutAttribute> ByRef value As T _ ) As Boolean
Type Parameters
- T
The Type of the value parameter.
Parameters
- key
- Type: System.String
The key of the value to get.
- value
- Type:
T
%
When this method returns, the value associated with the specified key if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized.
| Exception | Condition |
|---|---|
| ArgumentNullException | key is Nothing. |
| InvalidCastException | The type of the value returned from the key cannot be implicitly cast to the type of the value parameter. |
Show: