* Fix spell error from Segmment to Segment * Change for fix the misspell interface in a non breaking way --------- Co-authored-by: Lucas Bach Bisgaard <lucas.bisgaard@kraftvaerk.com>
19 lines
573 B
C#
19 lines
573 B
C#
namespace Umbraco.Cms.Core.DeliveryApi;
|
|
|
|
public interface IRequestSegmentService
|
|
{
|
|
/// <summary>
|
|
/// Gets the requested segment from the "Accept-Segment" header, if present.
|
|
/// </summary>
|
|
string? GetRequestedSegment();
|
|
}
|
|
|
|
[Obsolete("This interface is misspelled and will be removed in Umbraco 18. Please use the correct one IRequestSegmentService")]
|
|
public interface IRequestSegmmentService
|
|
{
|
|
/// <summary>
|
|
/// Gets the requested segment from the "Accept-Segment" header, if present.
|
|
/// </summary>
|
|
string? GetRequestedSegment();
|
|
}
|