<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
	>
<channel>
	<title>Comments on: C# TwitPic API client</title>
	<atom:link href="http://martinnormark.com/2009/03/10/c-twitpic-api-client/feed" rel="self" type="application/rss+xml" />
	<link>http://martinnormark.com/2009/03/10/c-twitpic-api-client?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
	<description></description>
	<lastBuildDate>Wed, 10 Mar 2010 13:52:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Martin H. Normark</title>
		<link>http://martinnormark.com/2009/03/10/c-twitpic-api-client/comment-page-1#comment-527</link>
		<dc:creator>Martin H. Normark</dc:creator>
		<pubDate>Thu, 30 Jul 2009 09:21:18 +0000</pubDate>
		<guid isPermaLink="false">/post/C-TwitPic-API-client.aspx#comment-527</guid>
		<description>Hi Balu

According to this: http://msdn.microsoft.com/en-us/library/system.text.stringbuilder_members.aspx

The AppendLine is available in the Compact Framework as well. Which version of the .Net Compact Framework are you using?</description>
		<content:encoded><![CDATA[<p>Hi Balu</p>
<p>According to this: <a href="http://msdn.microsoft.com/en-us/library/system.text.stringbuilder_members.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.text.stringbuilder_members.aspx</a></p>
<p>The AppendLine is available in the Compact Framework as well. Which version of the .Net Compact Framework are you using?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: balu</title>
		<link>http://martinnormark.com/2009/03/10/c-twitpic-api-client/comment-page-1#comment-526</link>
		<dc:creator>balu</dc:creator>
		<pubDate>Wed, 29 Jul 2009 09:09:12 +0000</pubDate>
		<guid isPermaLink="false">/post/C-TwitPic-API-client.aspx#comment-526</guid>
		<description>HI 
thanks for your code.But the 
contents.AppendLine(); 
property is not available in windows mobile projects.I tried 
contents.Append(&quot;\n&quot;);   instead but its not working.
Is there any other way.
Regards
Balu
</description>
		<content:encoded><![CDATA[<p>HI<br />
thanks for your code.But the<br />
contents.AppendLine();<br />
property is not available in windows mobile projects.I tried<br />
contents.Append(&quot;\n&quot;);   instead but its not working.<br />
Is there any other way.<br />
Regards<br />
Balu</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sanil</title>
		<link>http://martinnormark.com/2009/03/10/c-twitpic-api-client/comment-page-1#comment-525</link>
		<dc:creator>Sanil</dc:creator>
		<pubDate>Fri, 26 Jun 2009 01:58:42 +0000</pubDate>
		<guid isPermaLink="false">/post/C-TwitPic-API-client.aspx#comment-525</guid>
		<description>Thanks!
I was really stucked at the &quot;posting the image to TwitPic&quot; part, and was really frustated after trying many ways to do that, I even read the whole RFC # 2388 :(

your post really helped me, and that means I&#039;ve completed the project :)
It&#039;s now on codeplex http://twipli.codeplex.com</description>
		<content:encoded><![CDATA[<p>Thanks!<br />
I was really stucked at the &quot;posting the image to TwitPic&quot; part, and was really frustated after trying many ways to do that, I even read the whole RFC # 2388 <img src='http://martinnormark.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>your post really helped me, and that means I&#8217;ve completed the project <img src='http://martinnormark.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
It&#8217;s now on codeplex <a href="http://twipli.codeplex.com" rel="nofollow">http://twipli.codeplex.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin H. Normark</title>
		<link>http://martinnormark.com/2009/03/10/c-twitpic-api-client/comment-page-1#comment-524</link>
		<dc:creator>Martin H. Normark</dc:creator>
		<pubDate>Mon, 23 Mar 2009 16:23:41 +0000</pubDate>
		<guid isPermaLink="false">/post/C-TwitPic-API-client.aspx#comment-524</guid>
		<description>You need to include System.Xml.Linq as well: using System.Xml.Linq;</description>
		<content:encoded><![CDATA[<p>You need to include System.Xml.Linq as well: using System.Xml.Linq;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DJ</title>
		<link>http://martinnormark.com/2009/03/10/c-twitpic-api-client/comment-page-1#comment-523</link>
		<dc:creator>DJ</dc:creator>
		<pubDate>Sun, 22 Mar 2009 21:36:22 +0000</pubDate>
		<guid isPermaLink="false">/post/C-TwitPic-API-client.aspx#comment-523</guid>
		<description>One more problem.
I&#039;m using the following but still getting errors with 
XDocument doc = XDocument.Parse(result);

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net;
using System.Xml.Schema;
using System.IO;
using System.Xml;
//using System.Security.Cryptography.X509Certificates;
using System.Net.Security;

</description>
		<content:encoded><![CDATA[<p>One more problem.<br />
I&#8217;m using the following but still getting errors with<br />
XDocument doc = XDocument.Parse(result);</p>
<p>using System;<br />
using System.Collections.Generic;<br />
using System.Linq;<br />
using System.Text;<br />
using System.Net;<br />
using System.Xml.Schema;<br />
using System.IO;<br />
using System.Xml;<br />
//using System.Security.Cryptography.X509Certificates;<br />
using System.Net.Security;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin H. Normark</title>
		<link>http://martinnormark.com/2009/03/10/c-twitpic-api-client/comment-page-1#comment-522</link>
		<dc:creator>Martin H. Normark</dc:creator>
		<pubDate>Sun, 22 Mar 2009 13:32:40 +0000</pubDate>
		<guid isPermaLink="false">/post/C-TwitPic-API-client.aspx#comment-522</guid>
		<description>You can use the System.IO.File class to do that:

byte[] binaryImageData = File.ReadAllBytes(&quot;c:\img.jpg&quot;);
UploadPhoto(binaryImageData, &quot;Test&quot;, &quot;img.jpg&quot;);</description>
		<content:encoded><![CDATA[<p>You can use the System.IO.File class to do that:</p>
<p>byte[] binaryImageData = File.ReadAllBytes(&quot;c:\img.jpg&quot;);<br />
UploadPhoto(binaryImageData, &quot;Test&quot;, &quot;img.jpg&quot;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DJ</title>
		<link>http://martinnormark.com/2009/03/10/c-twitpic-api-client/comment-page-1#comment-521</link>
		<dc:creator>DJ</dc:creator>
		<pubDate>Sat, 21 Mar 2009 20:58:53 +0000</pubDate>
		<guid isPermaLink="false">/post/C-TwitPic-API-client.aspx#comment-521</guid>
		<description>Sorry, I figured it out, however, I&#039;m not sure how to pass binaryImageData, have an example? Thanks alot.</description>
		<content:encoded><![CDATA[<p>Sorry, I figured it out, however, I&#8217;m not sure how to pass binaryImageData, have an example? Thanks alot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DJ</title>
		<link>http://martinnormark.com/2009/03/10/c-twitpic-api-client/comment-page-1#comment-520</link>
		<dc:creator>DJ</dc:creator>
		<pubDate>Sat, 21 Mar 2009 20:11:19 +0000</pubDate>
		<guid isPermaLink="false">/post/C-TwitPic-API-client.aspx#comment-520</guid>
		<description>In your code, are you missing a function? 

string fileContentType = GetImageContentType(filename);

GetImageContentType, I&#039;m only familiar with this in Java. </description>
		<content:encoded><![CDATA[<p>In your code, are you missing a function? </p>
<p>string fileContentType = GetImageContentType(filename);</p>
<p>GetImageContentType, I&#8217;m only familiar with this in Java.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
