AviD
AviD

Reputation: 64

How to inject an instance of a type, per request using Unity Container for Web API

public class StoreDetails
{
    public int StoreId { get; set; }
}

I want to create an instance of StoreDetails for per request to Web API. This instance will be used as dependency for various other classes in project. Also I want to set value of "StoreId" property to HttpContext.Current.Request.Headers["StoreId"]

I am using Unity as container with help of following libraries: Unity 3.5.1404.0 Unity.AspNet.WebApi 3.5.1404.0

I have following method to register types

public static void RegisterTypes(IUnityContainer container)
    {
        container.RegisterInstance<StoreDetails>(/* how to provide some method to inject required StoreId from HttpContext.Current.Request.Headers["StoreId"] per request */);
    }

Upvotes: 1

Views: 2306

Answers (1)

AviD
AviD

Reputation: 64

I figured out how to do this on my own.

public static void RegisterTypes(IUnityContainer container)
    {
        // Some other types registration .

        container.RegisterType<StoreDetails>(
            //new PerResolveLifetimeManager(), 
            new InjectionFactory(c => {
                int storeId;
                if(int.TryParse(HttpContext.Current.Request.Headers["StoreId"], out storeId)) {
                    return new StoreDetails {StoreId = storeId};
                }
                return null;
            }));
    }

Upvotes: 2

Related Questions