IServiceWrapper
Represents a wrapper that can wrap a service.
using System.Linq.Expressions;
namespace Stashbox.Resolution
{
public interface IServiceWrapper : IResolver
{
Expression WrapExpression(TypeInformation originalTypeInformation, TypeInformation wrappedTypeInformation, ServiceContext serviceContext);
bool TryUnWrap(TypeInformation typeInformation, out TypeInformation unWrappedType);
}
}