You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/NzbDrone.Common/OAuth/OAuthSignatureTreatment.cs

14 lines
391 B

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
}
}