How to typecast the object based on the string class name passed in the constructor - C#

114 Views Asked by At

This is my Custom attribute

 public class CaptureMetrics : ActionFilterAttribute
 {
    private readonly string _metricType;
    public CaptureMetrics(MetricTypes metricType)
    {
        _metricType = metricType.ToString();
    }
    public override async Task OnActionExecutionAsync(ActionExecutingContext context, ActionExecutionDelegate next)
    {
        try
        {
            string strJson;
            var reqPayload = context.HttpContext.Request.Body;
            using (var sr = new StreamReader(reqPayload))
            {
                strJson = await sr.ReadToEndAsync();
            }
            //Type t = Type.GetType(_metricType);
            //below I need to typecast the object to the equivalent DTO 
            var obj = JsonConvert.DeserializeObject(strJson); //line #
            // ToDo
        }
        catch (Exception)
        {
            //ToDo -> Log Exception
            throw;
        }
        finally
        {
            await next();
        }
    }
}

public enum MetricTypes
{
    ApiMetric
}

//DTO
public class ApiMetric
{
  //some properties
}

From the controller's action the above attribute is used as below

[CaptureMetrics(MetricTypes.ApiMetric)]
public async Task<IActionResult> Get([FromBody]ApiPayload payload)
{
}

On line #, I need to typecast the request payload to the equivalent DTO class.

For every entry in Enum (MetricType), I have a class with the same name (ex. ApiMetric)

How to typecast the object here?

0

There are 0 best solutions below