Radarr/src/NzbDrone.Common/OAuth/OAuthSignatureTreatment.cs

14 lines
391 B
C#
Raw Normal View History

namespace NzbDrone.Common.OAuth
{
/// <summary>
/// Specifies whether the final signature value should be escaped during calculation.
/// This might be necessary for some OAuth implementations that do not obey the default
/// specification for signature escaping.
/// </summary>
public enum OAuthSignatureTreatment
{
Escaped,
Unescaped
}
2019-12-22 21:24:10 +00:00
}