summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.AspNet/Clients/OAuth2/MicrosoftClientUserData.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2013-06-16 16:50:45 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2013-06-16 16:50:45 -0700
commit89c2167a677ebb23aca7f1e9592af7954a093fff (patch)
tree37c513a0cfae1cee641051d345b6cbffd5216538 /src/DotNetOpenAuth.AspNet/Clients/OAuth2/MicrosoftClientUserData.cs
parentc74bede6f773bd0a0c6362a6647a2939554ccd9a (diff)
downloadDotNetOpenAuth-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/MicrosoftClientUserData.cs')
-rw-r--r--src/DotNetOpenAuth.AspNet/Clients/OAuth2/MicrosoftClientUserData.cs66
1 files changed, 0 insertions, 66 deletions
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/MicrosoftClientUserData.cs b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/MicrosoftClientUserData.cs
deleted file mode 100644
index 3b55f7a..0000000
--- a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/MicrosoftClientUserData.cs
+++ /dev/null
@@ -1,66 +0,0 @@
-//-----------------------------------------------------------------------
-// <copyright file="MicrosoftClientUserData.cs" company="Microsoft">
-// Copyright (c) Microsoft. All rights reserved.
-// </copyright>
-//-----------------------------------------------------------------------
-
-namespace DotNetOpenAuth.AspNet.Clients {
- using System;
- using System.ComponentModel;
- using System.Runtime.Serialization;
-
- /// <summary>
- /// Contains data of a Windows Live user.
- /// </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)]
- public class MicrosoftClientUserData {
- #region Public Properties
-
- /// <summary>
- /// Gets or sets the first name.
- /// </summary>
- /// <value> The first name. </value>
- [DataMember(Name = "first_name")]
- public string FirstName { get; set; }
-
- /// <summary>
- /// Gets or sets the gender.
- /// </summary>
- /// <value> The gender. </value>
- [DataMember(Name = "gender")]
- public string Gender { get; set; }
-
- /// <summary>
- /// Gets or sets the id.
- /// </summary>
- /// <value> The id. </value>
- [DataMember(Name = "id")]
- public string Id { get; set; }
-
- /// <summary>
- /// Gets or sets the last name.
- /// </summary>
- /// <value> The last name. </value>
- [DataMember(Name = "last_name")]
- public string LastName { get; set; }
-
- /// <summary>
- /// Gets or sets the link.
- /// </summary>
- /// <value> The link. </value>
- [DataMember(Name = "link")]
- public Uri Link { get; set; }
-
- /// <summary>
- /// Gets or sets the name.
- /// </summary>
- /// <value> The name. </value>
- [DataMember(Name = "name")]
- public string Name { get; set; }
- #endregion
- }
-}