diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-06-16 16:50:45 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-06-16 16:50:45 -0700 |
commit | 89c2167a677ebb23aca7f1e9592af7954a093fff (patch) | |
tree | 37c513a0cfae1cee641051d345b6cbffd5216538 /src/DotNetOpenAuth.AspNet/Clients/OAuth2/AzureADHeader.cs | |
parent | c74bede6f773bd0a0c6362a6647a2939554ccd9a (diff) | |
download | DotNetOpenAuth-89c2167a677ebb23aca7f1e9592af7954a093fff.zip DotNetOpenAuth-89c2167a677ebb23aca7f1e9592af7954a093fff.tar.gz DotNetOpenAuth-89c2167a677ebb23aca7f1e9592af7954a093fff.tar.bz2 |
Removes Microsoft AspNet project.
Compatibility with it is broken due to the async changes in DNOA.
Diffstat (limited to 'src/DotNetOpenAuth.AspNet/Clients/OAuth2/AzureADHeader.cs')
-rw-r--r-- | src/DotNetOpenAuth.AspNet/Clients/OAuth2/AzureADHeader.cs | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/AzureADHeader.cs b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/AzureADHeader.cs deleted file mode 100644 index 042eccb..0000000 --- a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/AzureADHeader.cs +++ /dev/null @@ -1,49 +0,0 @@ -//----------------------------------------------------------------------- -// <copyright file="AzureADHeader.cs" company="Microsoft"> -// Copyright (c) Microsoft. All rights reserved. -// </copyright> -//----------------------------------------------------------------------- - -namespace DotNetOpenAuth.AspNet.Clients { - using System; - using System.ComponentModel; - using System.Diagnostics.CodeAnalysis; - using System.Runtime.Serialization; - - /// <summary> - /// Contains header of AzureAD JWT token. - /// </summary> - /// <remarks> - /// Technically, this class doesn't need to be public, but because we want to make it serializable in medium trust, it has to be public. - /// </remarks> - [DataContract] - [EditorBrowsable(EditorBrowsableState.Never)] - [SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "AzureAD", Justification = "Brand name")] - - public class AzureADHeader { - #region Public Properties - - /// <summary> - /// Gets or sets the type of token. Will always be JWT - /// </summary> - /// <value> The type of token. </value> - [DataMember(Name = "typ")] - public string Typ { get; set; } - - /// <summary> - /// Gets or sets the algo of the header. - /// </summary> - /// <value> The algo of encoding. </value> - [DataMember(Name = "alg")] - public string Alg { get; set; } - - /// <summary> - /// Gets or sets the thumbprint of the header. - /// </summary> - /// <value> The thumbprint of the cert used to encode. </value> - [DataMember(Name = "x5t")] - public string X5t { get; set; } - - #endregion - } -} |