Here's my problem: I have a container where I register concrete types as interfaces.
builder.RegisterType<DeleteOrganization>().As<IDeleteOrganization>();
I'm implementing a SerializationBinder for a serialization project I'm doing and the BindToType method that I need to implement wants me to return a Type object. The BindToType method gives me an assemblyName and typeName (both strings) to help me create a type object. What I want to do is if the typeName is an interface, I want to ask Autofac what the concrete implementation Type is for that interface Type without actually having it create the object. Is that possible?