diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-05-26 08:06:50 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-05-26 08:06:50 -0700 |
commit | ced7d307a7801de9e8fed39c8d470b525e8b94f1 (patch) | |
tree | 974617c64a945ad84190271881a8c49fa8efe4c4 /samples/DotNetOpenAuth.ApplicationBlock/Facebook/FacebookGraph.cs | |
parent | 85c21ae12f04cc50a0478cf69c82d441da23d002 (diff) | |
parent | 41fd4b0f54b8080471e35822b0d8cccd7f621b3b (diff) | |
download | DotNetOpenAuth-ced7d307a7801de9e8fed39c8d470b525e8b94f1.zip DotNetOpenAuth-ced7d307a7801de9e8fed39c8d470b525e8b94f1.tar.gz DotNetOpenAuth-ced7d307a7801de9e8fed39c8d470b525e8b94f1.tar.bz2 |
Merges András Fuchs enhancements to the OAuth samples.
Diffstat (limited to 'samples/DotNetOpenAuth.ApplicationBlock/Facebook/FacebookGraph.cs')
-rw-r--r-- | samples/DotNetOpenAuth.ApplicationBlock/Facebook/FacebookGraph.cs | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/samples/DotNetOpenAuth.ApplicationBlock/Facebook/FacebookGraph.cs b/samples/DotNetOpenAuth.ApplicationBlock/Facebook/FacebookGraph.cs deleted file mode 100644 index 909ae9a..0000000 --- a/samples/DotNetOpenAuth.ApplicationBlock/Facebook/FacebookGraph.cs +++ /dev/null @@ -1,54 +0,0 @@ -//----------------------------------------------------------------------- -// <copyright file="FacebookGraph.cs" company="Outercurve Foundation"> -// Copyright (c) Outercurve Foundation. All rights reserved. -// </copyright> -//----------------------------------------------------------------------- - -namespace DotNetOpenAuth.ApplicationBlock.Facebook { - using System; - using System.Collections.Generic; - using System.IO; - using System.Linq; - using System.Runtime.Serialization; - using System.Runtime.Serialization.Json; - using System.Text; - - [DataContract] - public class FacebookGraph { - private static DataContractJsonSerializer jsonSerializer = new DataContractJsonSerializer(typeof(FacebookGraph)); - - [DataMember(Name = "id")] - public long Id { get; set; } - - [DataMember(Name = "name")] - public string Name { get; set; } - - [DataMember(Name = "first_name")] - public string FirstName { get; set; } - - [DataMember(Name = "last_name")] - public string LastName { get; set; } - - [DataMember(Name = "link")] - public Uri Link { get; set; } - - [DataMember(Name = "birthday")] - public string Birthday { get; set; } - - public static FacebookGraph Deserialize(string json) { - if (string.IsNullOrEmpty(json)) { - throw new ArgumentNullException("json"); - } - - return Deserialize(new MemoryStream(Encoding.UTF8.GetBytes(json))); - } - - public static FacebookGraph Deserialize(Stream jsonStream) { - if (jsonStream == null) { - throw new ArgumentNullException("jsonStream"); - } - - return (FacebookGraph)jsonSerializer.ReadObject(jsonStream); - } - } -} |