ReflectionDeserialiseObject Method (Type, ListTupleString, String, Boolean) |
deserialise an object from a list of tuple string,string s
Namespace: ANDREICSLIB.HelpersAssembly: ANDREICSLIB (in ANDREICSLIB.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static Object DeserialiseObject(
Type objectType,
List<Tuple<string, string>> objectFieldNameAndValues,
bool ignoreErrors = true
)
Public Shared Function DeserialiseObject (
objectType As Type,
objectFieldNameAndValues As List(Of Tuple(Of String, String)),
Optional ignoreErrors As Boolean = true
) As Object
public:
static Object^ DeserialiseObject(
Type^ objectType,
List<Tuple<String^, String^>^>^ objectFieldNameAndValues,
bool ignoreErrors = true
)
static member DeserialiseObject :
objectType : Type *
objectFieldNameAndValues : List<Tuple<string, string>> *
?ignoreErrors : bool
(* Defaults:
let _ignoreErrors = defaultArg ignoreErrors true
*)
-> Object
Parameters
- objectType
- Type: SystemType
- objectFieldNameAndValues
- Type: System.Collections.GenericListTupleString, String
field name,field val - ignoreErrors (Optional)
- Type: SystemBoolean
Return Value
Type:
Object
See Also