Find ShippingRateComputationMethodType

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
7 years ago
Hello!
I have some code like:

            IShippingService _shippingMethod = EngineContext.Current.Resolve<IShippingService>();
            var shipping = _shippingMethod.GetAllShippingMethods().Where(p => p.Name == shippingMethod).FirstOrDefault();


And i want to retrieve ShippingRateComputationMethodType. How can i make it?
7 years ago
I think you are confusing Shipping Methods (e.g. "Ground", Next Day", etc.) with Shipping Rate Computation Methods.  If you want the latter, then use LoadActiveShippingRateComputationMethods().
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.