Interface IResolver
Defines methods required to resolved instances for deserialization.
Namespace: Manatee.Json.Serialization
Assembly: Manatee.Json.dll
Syntax
public interface IResolver
Methods
| Improve this Doc View SourceResolve(Type, Nullable<Dictionary<SerializationInfo, Nullable<Object>>>)
Resolves an instance of the given type.
Declaration
object Resolve(Type type, Dictionary<SerializationInfo, object? >? parameters)
Parameters
Type | Name | Description |
---|---|---|
System.Type | type | The type to resolve. |
System.Nullable<System.Collections.Generic.Dictionary<SerializationInfo, System.Nullable<System.Object>>> | parameters | Parameters to use for construction of the object. |
Returns
Type | Description |
---|---|
System.Object | An instance of the type requested. |