Skip to main content

KeyValueDataContractDeserializer

Assembly: ServiceStack.Client.dll​
View Source​
Declaration
public class KeyValueDataContractDeserializer

Fields​

Instance​

View Source​
Declaration
public static KeyValueDataContractDeserializer Instance

Methods​

Parse(IDictionary<String, String>, Type)​

View Source​
Declaration
public object Parse(IDictionary<string, string> keyValuePairs, Type returnType)
Returns​

System.Object

Parameters​
TypeName
System.Collections.Generic.IDictionary<System.String,System.String>keyValuePairs
System.TypereturnType

Parse(NameValueCollection, Type)​

View Source​
Declaration
public object Parse(NameValueCollection nameValues, Type returnType)
Returns​

System.Object

Parameters​
TypeName
System.Collections.Specialized.NameValueCollectionnameValues
System.TypereturnType

Populate(Object, NameValueCollection, Type)​

View Source​
Declaration
public object Populate(object instance, NameValueCollection nameValues, Type returnType)
Returns​

System.Object

Parameters​
TypeName
System.Objectinstance
System.Collections.Specialized.NameValueCollectionnameValues
System.TypereturnType

Parse<To>(IDictionary<String, String>)​

View Source​
Declaration
public To Parse<To>(IDictionary<string, string> keyValuePairs)
Returns​

<To>

Parameters​
TypeName
System.Collections.Generic.IDictionary<System.String,System.String>keyValuePairs
Type Parameters​
  • To