AppSetting.TryDeserializeSettingValue Method |
Retrieves the object that was stored as a string in the Value property.
Namespace:
Dundas.BI.Configuration
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.1.0.1000)
Syntaxpublic bool TryDeserializeSettingValue(
string serialized,
out Object?? value
)
Public Function TryDeserializeSettingValue (
serialized As String,
<OutAttribute> ByRef value As Object
) As Boolean
public:
bool TryDeserializeSettingValue(
String^ serialized,
[OutAttribute] Object^% value
)
member TryDeserializeSettingValue :
serialized : string *
value : Object byref -> bool
Parameters
- serialized
- Type: System.String
The serialized. - value
- Type: System.Object
When this method returns, contains the deserialized value if deserialization was successful;
otherwise, null. This parameter is passed uninitialized.
Return Value
Type:
Booleantrue if deserialization was successful; otherwise,
false.
Exceptions
See Also