namespace Nop.Core.Http; /// /// Represents default values related to HTTP features /// public static partial class NopHttpDefaults { /// /// Gets the name of the default HTTP client /// public static string DefaultHttpClient => "default"; /// /// Gets the name of a request item that stores the value that indicates whether the client is being redirected to a new location using POST /// public static string IsPostBeingDoneRequestItem => "nop.IsPOSTBeingDone"; /// /// Gets the name of a request item that stores the value that indicates whether the request is being redirected by the generic route transformer /// public static string GenericRouteInternalRedirect => "nop.RedirectFromGenericPathRoute"; }