ASP.NET Core MVC Controls | ComponentOne
C1.JsonNet Namespace / JsonResolver Class / ResolveConverter Method
The name of the object.
The object value.
The object type.
The context.






In This Topic
    ResolveConverter Method (JsonResolver)
    In This Topic
    Gets the converter for this resolver.
    Syntax
    'Declaration
     
    
    Public Overrides Function ResolveConverter( _
       ByVal name As System.String, _
       ByVal value As System.Object, _
       ByVal type As System.Type, _
       ByVal context As IContext _
    ) As BaseConverter
    'Usage
     
    
    Dim instance As JsonResolver
    Dim name As System.String
    Dim value As System.Object
    Dim type As System.Type
    Dim context As IContext
    Dim value As BaseConverter
     
    value = instance.ResolveConverter(name, value, type, context)
    public override BaseConverter ResolveConverter( 
       System.string name,
       System.object value,
       System.Type type,
       IContext context
    )
    public function ResolveConverter( 
        name: System.String;
        value: System.TObject;
        type: System.Type;
        context: IContext
    ): BaseConverter; override; 
    public override function ResolveConverter( 
       name : System.String,
       value : System.Object,
       type : System.Type,
       context : IContext
    ) : BaseConverter;
    public: BaseConverter* ResolveConverter( 
       System.string* name,
       System.Object* value,
       System.Type* type,
       IContext* context
    ) override 
    public:
    BaseConverter^ ResolveConverter( 
       System.String^ name,
       System.Object^ value,
       System.Type^ type,
       IContext^ context
    ) override 

    Parameters

    name
    The name of the object.
    value
    The object value.
    type
    The object type.
    context
    The context.

    Return Value

    A converter.
    See Also