Create the settings

Create a class and name it SampleSettings. This file should inherit from IShippingMethodSettings. This file is where you define the settings (model) of your custom shipping provider. Take a look at the code below for a sample implementation:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Telerik.Sitefinity.Modules.Ecommerce.Shipping.ShippingMethodSettings;
namespace Telerik.Sitefinity.Documentation.CodeSnippets.DevGuide.SitefinityEssentials.Modules.Ecommerce.ShippingProviderModel
{
/// <summary>
/// This class defines the Sample provider settings used in the administration user interface.
/// </summary>
public class SampleSettings : IShippingMethodSettings
{
/// <summary>
/// Gets or sets the title of the shipping method.
/// </summary>
/// <value>The title.</value>
public string Title { get; set; }
/// <summary>
/// Gets or sets the URL where the rate requests of the shipping method are sent.
/// </summary>
/// <value>The URL.</value>
public string Url { get; set; }
/// <summary>
/// Gets or sets the password of the account for the shipping method.
/// </summary>
/// <value>The password.</value>
public string Password { get; set; }
/// <summary>
/// Gets or sets the license key of the account for the shipping method.
/// </summary>
/// <value>The license key.</value>
public string LicenseKey { get; set; }
/// <summary>
/// Gets or sets the service settings for the shipping method.
/// </summary>
/// <value>The service settings.</value>
public ServiceSettings[] ServiceSettings { get; set; }
}
}

Increase your Sitefinity skills by signing up for our free trainings. Get Sitefinity-certified at Progress Education Community to boost your credentials.

Get started with Integration Hub | Sitefinity Cloud | Sitefinity SaaS

This free lesson teaches administrators, marketers, and other business professionals how to use the Integration hub service to create automated workflows between Sitefinity and other business systems.

Web Security for Sitefinity Administrators

This free lesson teaches administrators the basics about protecting yor Sitefinity instance and its sites from external threats. Configure HTTPS, SSL, allow lists for trusted sites, and cookie security, among others.

Foundations of Sitefinity ASP.NET Core Development

The free on-demand video course teaches developers how to use Sitefinity .NET Core and leverage its decoupled architecture and new way of coding against the platform.

Was this article helpful?