<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>ThreeSharp Forum Rss Feed</title><link>http://www.codeplex.com/ThreeSharp/Thread/List.aspx</link><description>ThreeSharp Forum Rss Description</description><item><title>New Post: How to get a file from a bucket and then store it in another bucket</title><link>http://threesharp.codeplex.com/discussions/400095</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I would like to know how can I get the a file from a bucket and then store it in another one. I tried the follwing method:&lt;/p&gt;
&lt;pre&gt;&lt;pre&gt; ///  /// Gets a file object from a bucket, and streams it to disk ///  
 public void GetFileObject(String bucketName, String keyName, String localfile)
 {&lt;br&gt;  &amp;nbsp;ObjectGetRequest objectGetRequest = new ObjectGetRequest(bucketName, keyName); &lt;br&gt;   ObjectGetResponse objectGetResponse = _service.ObjectGet(objectGetRequest); &lt;br&gt;   objectGetResponse.StreamResponseToFile(localfile); 
  }&lt;br&gt;&lt;br&gt;&lt;pre&gt;&lt;pre&gt;But instead of sending it to the disk I would like to stream it some how and re send it but to a different bucket. How can I do this?.&lt;br&gt;&lt;/pre&gt;
&lt;/pre&gt;
&lt;/pre&gt;
&lt;/pre&gt;
&lt;/div&gt;</description><author>edfilesharp</author><pubDate>Fri, 19 Oct 2012 20:00:27 GMT</pubDate><guid isPermaLink="false">New Post: How to get a file from a bucket and then store it in another bucket 20121019080027P</guid></item><item><title>New Post: Range for headers.</title><link>http://threesharp.codeplex.com/discussions/398385</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;It seems HttpWebRequest doesn't allow you to use the &amp;quot;Range&amp;quot; header directly, so I had to modify the project,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;In&amp;nbsp;private HttpWebRequest ConfigureWebRequest(Request request)&lt;/p&gt;
&lt;p&gt;I added&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;if (request.UseRange)&lt;br&gt;
&lt;/em&gt;&lt;em&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;httpWebRequest.AddRange(request.RangeFrom, request.RangeTo);&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;And three public members in the Request class,&lt;/p&gt;
&lt;p&gt;&lt;em&gt;public bool UseRange = false; &amp;nbsp;&lt;/em&gt;&lt;br&gt;
&lt;em&gt;public int RangeFrom = 0; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/em&gt;&lt;br&gt;
&lt;em&gt;public int RangeTo = 0;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;br&gt;
&lt;/em&gt;&lt;/p&gt;
&lt;/div&gt;</description><author>hreinn</author><pubDate>Sun, 07 Oct 2012 17:55:57 GMT</pubDate><guid isPermaLink="false">New Post: Range for headers. 20121007055557P</guid></item><item><title>New Post: Custom server URLs</title><link>http://threesharp.codeplex.com/discussions/397873</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;As far as I can tell, ThreeSharp currently only uses the standard US Amazon S3 server (s3.amazonaws.com) and cloudfront (cloudfront.amazonaws.com).&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;There are other S3 servers, such as regional services (for example&amp;nbsp;s3-eu-west-1.amazonaws.com for EU Ireland) and resellers (for example DreamHost DreamObjects&amp;nbsp;objects.dreamhost.com).&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;This quick fix to&amp;nbsp;Affirma.ThreeSharp.ThreeSharpConfig allows a custom server to be set. If no server is set, it uses the existing behaviour of switching between cloudfront and US standard S3 based on ThreeSharpServiceType. If Server property is set
 to null, it will also revert back to this behaviour.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;ThreeSharpConfig .cs:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;div style="color:black; background-color:white"&gt;
&lt;pre&gt;&lt;span style="color:blue"&gt;private&lt;/span&gt; &lt;span style="color:blue"&gt;string&lt;/span&gt; server;

&lt;span style="color:gray"&gt;///&lt;/span&gt; &lt;span style="color:gray"&gt;&amp;lt;summary&amp;gt;&lt;/span&gt;
&lt;span style="color:gray"&gt;///&lt;/span&gt;&lt;span style="color:green"&gt; Server&lt;/span&gt;
&lt;span style="color:gray"&gt;///&lt;/span&gt; &lt;span style="color:gray"&gt;&amp;lt;/summary&amp;gt;&lt;/span&gt;
&lt;span style="color:blue"&gt;public&lt;/span&gt; String Server
{
    &lt;span style="color:blue"&gt;get&lt;/span&gt; { &lt;span style="color:blue"&gt;return&lt;/span&gt; &lt;span style="color:blue"&gt;this&lt;/span&gt;.server == &lt;span style="color:blue"&gt;null&lt;/span&gt; ? &lt;span style="color:blue"&gt;this&lt;/span&gt;.GetServerByType() : &lt;span style="color:blue"&gt;this&lt;/span&gt;.server; }
    &lt;span style="color:blue"&gt;set&lt;/span&gt; { &lt;span style="color:blue"&gt;this&lt;/span&gt;.server = value; }
}
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;thoughts?&lt;/p&gt;
&lt;/div&gt;</description><author>ghelyar</author><pubDate>Wed, 03 Oct 2012 12:51:44 GMT</pubDate><guid isPermaLink="false">New Post: Custom server URLs 20121003125144P</guid></item><item><title>New Post: Transport forcibly closed when trying to upload</title><link>http://threesharp.codeplex.com/Thread/View.aspx?ThreadId=27986</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;John,&lt;/p&gt;
&lt;p&gt;thanks a lot for answering so fast. It seems that there's no possibility to overcome the subject and that is a helpful information as well, it's not a good news perhaps...&lt;/p&gt;
&lt;p&gt;We've already had the resending mechanism, but sometimes it's not enough in our case while connection is closed so often. As I noticed it's much more often when uploading for https address, for http all seems working better. Using secure connection is very
 important for us. It seems that it's going to be necessary to contact support after all.&lt;/p&gt;
&lt;p&gt;Thanks again &amp;amp; regards&lt;/p&gt;
&lt;/div&gt;</description><author>wiadran</author><pubDate>Wed, 02 Feb 2011 15:10:57 GMT</pubDate><guid isPermaLink="false">New Post: Transport forcibly closed when trying to upload 20110202031057P</guid></item><item><title>New Post: Transport forcibly closed when trying to upload</title><link>http://threesharp.codeplex.com/Thread/View.aspx?ThreadId=27986</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;wiadran,&lt;/p&gt;
&lt;p&gt;I ended up going through several cycles of interaction with Amazon engineers in July and August 2008, doing things like running Wireshark on my end while on the phone with them while they were doing diagnostics on their side.&amp;nbsp; Along the way, they indicated
 that they were doing a &amp;quot;network configuration change that we believe will help to address some of the packet loss you are occasionally seeing,&amp;quot; but unfortunately I can no longer pull up the full support case history on the Amazon site for some reason, so I
 can't provide any more details about what they did.&lt;/p&gt;
&lt;p&gt;From my perspective, something that they did seemed to ease the problem significantly, but I also took the precaution of adding retry logic to the upload/download operations in my product code.&amp;nbsp; Now the user doesn't get any kind of an error message
 unless an upload or download fails after three consecutive attempts.&amp;nbsp; I'm honestly not sure how often this has occurred on the client side, but I can report that we do see occasional failures during a weekly archiving operation that we do--maybe one out
 of every few hundred large downloads.&amp;nbsp; We just live with that now and pick up any failures a week later, and it evidently hasn't been a significant enough problem for our end-users that they have reported it.&lt;/p&gt;
&lt;p&gt;Sorry I don't have more helpful information for you,&lt;/p&gt;
&lt;p&gt;John&lt;/p&gt;
&lt;div id="x__mcePaste" style="left:-10000px; top:0px; width:1px; height:1px; overflow:hidden"&gt;
&amp;lt;!--[if gte mso 9]&amp;gt;&amp;lt;xml&amp;gt; &amp;lt;w:WordDocument&amp;gt; &amp;lt;w:View&amp;gt;Normal&amp;lt;/w:View&amp;gt; &amp;lt;w:Zoom&amp;gt;0&amp;lt;/w:Zoom&amp;gt; &amp;lt;w:TrackMoves /&amp;gt; &amp;lt;w:TrackFormatting /&amp;gt; &amp;lt;w:PunctuationKerning /&amp;gt; &amp;lt;w:ValidateAgainstSchemas /&amp;gt; &amp;lt;w:SaveIfXMLInvalid&amp;gt;false&amp;lt;/w:SaveIfXMLInvalid&amp;gt; &amp;lt;w:IgnoreMixedContent&amp;gt;false&amp;lt;/w:IgnoreMixedContent&amp;gt;
 &amp;lt;w:AlwaysShowPlaceholderText&amp;gt;false&amp;lt;/w:AlwaysShowPlaceholderText&amp;gt; &amp;lt;w:DoNotPromoteQF /&amp;gt; &amp;lt;w:LidThemeOther&amp;gt;EN-US&amp;lt;/w:LidThemeOther&amp;gt; &amp;lt;w:LidThemeAsian&amp;gt;X-NONE&amp;lt;/w:LidThemeAsian&amp;gt; &amp;lt;w:LidThemeComplexScript&amp;gt;X-NONE&amp;lt;/w:LidThemeComplexScript&amp;gt; &amp;lt;w:Compatibility&amp;gt; &amp;lt;w:BreakWrappedTables
 /&amp;gt; &amp;lt;w:SnapToGridInCell /&amp;gt; &amp;lt;w:WrapTextWithPunct /&amp;gt; &amp;lt;w:UseAsianBreakRules /&amp;gt; &amp;lt;w:DontGrowAutofit /&amp;gt; &amp;lt;w:SplitPgBreakAndParaMark /&amp;gt; &amp;lt;w:DontVertAlignCellWithSp /&amp;gt; &amp;lt;w:DontBreakConstrainedForcedTables /&amp;gt; &amp;lt;w:DontVertAlignInTxbx /&amp;gt; &amp;lt;w:Word11KerningPairs /&amp;gt; &amp;lt;w:CachedColBalance
 /&amp;gt; &amp;lt;/w:Compatibility&amp;gt; &amp;lt;w:DoNotOptimizeForBrowser /&amp;gt; &amp;lt;m:mathPr&amp;gt; &amp;lt;m:mathFont m:val=&amp;quot;Cambria Math&amp;quot; /&amp;gt; &amp;lt;m:brkBin m:val=&amp;quot;before&amp;quot; /&amp;gt; &amp;lt;m:brkBinSub m:val=&amp;quot;&amp;#45;-&amp;quot; /&amp;gt; &amp;lt;m:smallFrac m:val=&amp;quot;off&amp;quot; /&amp;gt; &amp;lt;m:dispDef /&amp;gt; &amp;lt;m:lMargin m:val=&amp;quot;0&amp;quot; /&amp;gt; &amp;lt;m:rMargin m:val=&amp;quot;0&amp;quot; /&amp;gt; &amp;lt;m:defJc
 m:val=&amp;quot;centerGroup&amp;quot; /&amp;gt; &amp;lt;m:wrapIndent m:val=&amp;quot;1440&amp;quot; /&amp;gt; &amp;lt;m:intLim m:val=&amp;quot;subSup&amp;quot; /&amp;gt; &amp;lt;m:naryLim m:val=&amp;quot;undOvr&amp;quot; /&amp;gt; &amp;lt;/m:mathPr&amp;gt;&amp;lt;/w:WordDocument&amp;gt; &amp;lt;/xml&amp;gt;&amp;lt;![endif]--&amp;gt;&amp;lt;!--[if gte mso 9]&amp;gt;&amp;lt;xml&amp;gt; &amp;lt;w:LatentStyles DefLockedState=&amp;quot;false&amp;quot; DefUnhideWhenUsed=&amp;quot;true&amp;quot; DefSemiHidden=&amp;quot;true&amp;quot;
 DefQFormat=&amp;quot;false&amp;quot; DefPriority=&amp;quot;99&amp;quot; LatentStyleCount=&amp;quot;267&amp;quot;&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;0&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; QFormat=&amp;quot;true&amp;quot; Name=&amp;quot;Normal&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; QFormat=&amp;quot;true&amp;quot;
 Name=&amp;quot;heading 1&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; QFormat=&amp;quot;true&amp;quot; Name=&amp;quot;heading 2&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;0&amp;quot; QFormat=&amp;quot;true&amp;quot; Name=&amp;quot;heading 3&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;0&amp;quot; QFormat=&amp;quot;true&amp;quot; Name=&amp;quot;heading 4&amp;quot; /&amp;gt; &amp;lt;w:LsdException
 Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;9&amp;quot; QFormat=&amp;quot;true&amp;quot; Name=&amp;quot;heading 5&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;9&amp;quot; QFormat=&amp;quot;true&amp;quot; Name=&amp;quot;heading 6&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;0&amp;quot; QFormat=&amp;quot;true&amp;quot; Name=&amp;quot;heading 7&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;0&amp;quot;
 QFormat=&amp;quot;true&amp;quot; Name=&amp;quot;heading 8&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;0&amp;quot; QFormat=&amp;quot;true&amp;quot; Name=&amp;quot;heading 9&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;39&amp;quot; Name=&amp;quot;toc 1&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;39&amp;quot; Name=&amp;quot;toc 2&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot;
 Priority=&amp;quot;39&amp;quot; Name=&amp;quot;toc 3&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;39&amp;quot; Name=&amp;quot;toc 4&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;39&amp;quot; Name=&amp;quot;toc 5&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;39&amp;quot; Name=&amp;quot;toc 6&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;39&amp;quot;
 Name=&amp;quot;toc 7&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;39&amp;quot; Name=&amp;quot;toc 8&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;39&amp;quot; Name=&amp;quot;toc 9&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;0&amp;quot; QFormat=&amp;quot;true&amp;quot; Name=&amp;quot;caption&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;10&amp;quot;
 SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; QFormat=&amp;quot;true&amp;quot; Name=&amp;quot;Title&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;1&amp;quot; Name=&amp;quot;Default Paragraph Font&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;11&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; QFormat=&amp;quot;true&amp;quot; Name=&amp;quot;Subtitle&amp;quot;
 /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;22&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; QFormat=&amp;quot;true&amp;quot; Name=&amp;quot;Strong&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;20&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; QFormat=&amp;quot;true&amp;quot; Name=&amp;quot;Emphasis&amp;quot; /&amp;gt; &amp;lt;w:LsdException
 Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;59&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Table Grid&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Placeholder Text&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;1&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot;
 QFormat=&amp;quot;true&amp;quot; Name=&amp;quot;No Spacing&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;60&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Light Shading&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;61&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Light List&amp;quot; /&amp;gt; &amp;lt;w:LsdException
 Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;62&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Light Grid&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;63&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Shading 1&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;64&amp;quot; SemiHidden=&amp;quot;false&amp;quot;
 UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Shading 2&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;65&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium List 1&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;66&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium
 List 2&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;67&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Grid 1&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;68&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Grid 2&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot;
 Priority=&amp;quot;69&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Grid 3&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;70&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Dark List&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;71&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot;
 Name=&amp;quot;Colorful Shading&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;72&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Colorful List&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;73&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Colorful Grid&amp;quot; /&amp;gt; &amp;lt;w:LsdException
 Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;60&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Light Shading Accent 1&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;61&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Light List Accent 1&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;62&amp;quot;
 SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Light Grid Accent 1&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;63&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Shading 1 Accent 1&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;64&amp;quot; SemiHidden=&amp;quot;false&amp;quot;
 UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Shading 2 Accent 1&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;65&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium List 1 Accent 1&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Revision&amp;quot; /&amp;gt; &amp;lt;w:LsdException
 Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;34&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; QFormat=&amp;quot;true&amp;quot; Name=&amp;quot;List Paragraph&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;29&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; QFormat=&amp;quot;true&amp;quot; Name=&amp;quot;Quote&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot;
 Priority=&amp;quot;30&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; QFormat=&amp;quot;true&amp;quot; Name=&amp;quot;Intense Quote&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;66&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium List 2 Accent 1&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;67&amp;quot;
 SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Grid 1 Accent 1&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;68&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Grid 2 Accent 1&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;69&amp;quot; SemiHidden=&amp;quot;false&amp;quot;
 UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Grid 3 Accent 1&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;70&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Dark List Accent 1&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;71&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot;
 Name=&amp;quot;Colorful Shading Accent 1&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;72&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Colorful List Accent 1&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;73&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Colorful
 Grid Accent 1&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;60&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Light Shading Accent 2&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;61&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Light List Accent 2&amp;quot; /&amp;gt; &amp;lt;w:LsdException
 Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;62&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Light Grid Accent 2&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;63&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Shading 1 Accent 2&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;64&amp;quot;
 SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Shading 2 Accent 2&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;65&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium List 1 Accent 2&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;66&amp;quot; SemiHidden=&amp;quot;false&amp;quot;
 UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium List 2 Accent 2&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;67&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Grid 1 Accent 2&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;68&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot;
 Name=&amp;quot;Medium Grid 2 Accent 2&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;69&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Grid 3 Accent 2&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;70&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Dark List
 Accent 2&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;71&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Colorful Shading Accent 2&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;72&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Colorful List Accent 2&amp;quot; /&amp;gt;
 &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;73&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Colorful Grid Accent 2&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;60&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Light Shading Accent 3&amp;quot; /&amp;gt; &amp;lt;w:LsdException
 Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;61&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Light List Accent 3&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;62&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Light Grid Accent 3&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;63&amp;quot;
 SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Shading 1 Accent 3&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;64&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Shading 2 Accent 3&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;65&amp;quot; SemiHidden=&amp;quot;false&amp;quot;
 UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium List 1 Accent 3&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;66&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium List 2 Accent 3&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;67&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot;
 Name=&amp;quot;Medium Grid 1 Accent 3&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;68&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Grid 2 Accent 3&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;69&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Grid
 3 Accent 3&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;70&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Dark List Accent 3&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;71&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Colorful Shading Accent 3&amp;quot; /&amp;gt; &amp;lt;w:LsdException
 Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;72&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Colorful List Accent 3&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;73&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Colorful Grid Accent 3&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;60&amp;quot;
 SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Light Shading Accent 4&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;61&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Light List Accent 4&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;62&amp;quot; SemiHidden=&amp;quot;false&amp;quot;
 UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Light Grid Accent 4&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;63&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Shading 1 Accent 4&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;64&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot;
 Name=&amp;quot;Medium Shading 2 Accent 4&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;65&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium List 1 Accent 4&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;66&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium
 List 2 Accent 4&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;67&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Grid 1 Accent 4&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;68&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Grid 2 Accent 4&amp;quot;
 /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;69&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Grid 3 Accent 4&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;70&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Dark List Accent 4&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot;
 Priority=&amp;quot;71&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Colorful Shading Accent 4&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;72&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Colorful List Accent 4&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;73&amp;quot;
 SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Colorful Grid Accent 4&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;60&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Light Shading Accent 5&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;61&amp;quot; SemiHidden=&amp;quot;false&amp;quot;
 UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Light List Accent 5&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;62&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Light Grid Accent 5&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;63&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot;
 Name=&amp;quot;Medium Shading 1 Accent 5&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;64&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Shading 2 Accent 5&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;65&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium
 List 1 Accent 5&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;66&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium List 2 Accent 5&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;67&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Grid 1 Accent 5&amp;quot;
 /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;68&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Grid 2 Accent 5&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;69&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Grid 3 Accent 5&amp;quot; /&amp;gt; &amp;lt;w:LsdException
 Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;70&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Dark List Accent 5&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;71&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Colorful Shading Accent 5&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;72&amp;quot;
 SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Colorful List Accent 5&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;73&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Colorful Grid Accent 5&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;60&amp;quot; SemiHidden=&amp;quot;false&amp;quot;
 UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Light Shading Accent 6&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;61&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Light List Accent 6&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;62&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot;
 Name=&amp;quot;Light Grid Accent 6&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;63&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Shading 1 Accent 6&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;64&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Shading
 2 Accent 6&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;65&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium List 1 Accent 6&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;66&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium List 2 Accent 6&amp;quot; /&amp;gt; &amp;lt;w:LsdException
 Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;67&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Grid 1 Accent 6&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;68&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Grid 2 Accent 6&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;69&amp;quot;
 SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Medium Grid 3 Accent 6&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;70&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Dark List Accent 6&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;71&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot;
 Name=&amp;quot;Colorful Shading Accent 6&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;72&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Colorful List Accent 6&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;73&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; Name=&amp;quot;Colorful
 Grid Accent 6&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;19&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; QFormat=&amp;quot;true&amp;quot; Name=&amp;quot;Subtle Emphasis&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;21&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; QFormat=&amp;quot;true&amp;quot; Name=&amp;quot;Intense
 Emphasis&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;31&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; QFormat=&amp;quot;true&amp;quot; Name=&amp;quot;Subtle Reference&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;32&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; QFormat=&amp;quot;true&amp;quot; Name=&amp;quot;Intense
 Reference&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;33&amp;quot; SemiHidden=&amp;quot;false&amp;quot; UnhideWhenUsed=&amp;quot;false&amp;quot; QFormat=&amp;quot;true&amp;quot; Name=&amp;quot;Book Title&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;37&amp;quot; Name=&amp;quot;Bibliography&amp;quot; /&amp;gt; &amp;lt;w:LsdException Locked=&amp;quot;false&amp;quot; Priority=&amp;quot;39&amp;quot; QFormat=&amp;quot;true&amp;quot;
 Name=&amp;quot;TOC Heading&amp;quot; /&amp;gt; &amp;lt;/w:LatentStyles&amp;gt; &amp;lt;/xml&amp;gt;&amp;lt;![endif]--&amp;gt;&amp;lt;!--[if gte mso 10]&amp;gt; &amp;lt;mce:style&amp;gt;&amp;lt;! /* Style Definitions */ table.MsoNormalTable {mso-style-name:&amp;quot;Table Normal&amp;quot;; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99;
 mso-style-qformat:yes; mso-style-parent:&amp;quot;&amp;quot;; mso-padding-alt:0in 5.4pt 0in 5.4pt; mso-para-margin:0in; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:11.0pt; font-family:&amp;quot;Calibri&amp;quot;,&amp;quot;sans-serif&amp;quot;; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin;
 mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin; mso-bidi-font-family:&amp;quot;Times New Roman&amp;quot;; mso-bidi-theme-font:minor-bidi;} --&amp;gt; &amp;lt;!--[endif]--&amp;gt;&lt;span style="font-size:11pt; font-family:&amp;quot;Calibri&amp;quot;,&amp;quot;sans-serif&amp;quot;"&gt;network configuration change that we
 believe will help to address some of the packet loss you are occasionally seeing&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;</description><author>johnlu_78759</author><pubDate>Wed, 02 Feb 2011 14:02:15 GMT</pubDate><guid isPermaLink="false">New Post: Transport forcibly closed when trying to upload 20110202020215P</guid></item><item><title>New Post: Transport forcibly closed when trying to upload</title><link>http://threesharp.codeplex.com/Thread/View.aspx?ThreadId=27986</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hello all, John&lt;/p&gt;
&lt;p&gt;I've encountered identical problem in our application while uploading files to S3 (same exception), while googling I've found this topic here, so I thought that maybe you have found some kind of solution to overcome this connection forcibly closed.&lt;/p&gt;
&lt;p&gt;I'll be really grateful for any information&lt;/p&gt;
&lt;/div&gt;</description><author>wiadran</author><pubDate>Wed, 02 Feb 2011 10:05:35 GMT</pubDate><guid isPermaLink="false">New Post: Transport forcibly closed when trying to upload 20110202100535A</guid></item><item><title>New Post: Use within Silverlight Upload App</title><link>http://threesharp.codeplex.com/Thread/View.aspx?ThreadId=48986</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Thanks to the client stack I am able to add custom headers and set ACLs on PUT requests and I am also able to read back the headers through HEAD requests.&lt;/p&gt;&lt;/div&gt;</description><author>m1is</author><pubDate>Mon, 16 Aug 2010 23:02:30 GMT</pubDate><guid isPermaLink="false">New Post: Use within Silverlight Upload App 20100816110230P</guid></item><item><title>New Post: Use within Silverlight Upload App</title><link>http://threesharp.codeplex.com/Thread/View.aspx?ThreadId=48986</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;That's almost exactly the route I took, except using POST.&amp;nbsp; I wasn't sure what hte capabilities were for adding custom META tags and setting ACL's via the PUT method (and using SSL) so I opted for POST because it let me accomplish all of it.&lt;/p&gt;&lt;/div&gt;</description><author>dhorne41</author><pubDate>Mon, 16 Aug 2010 19:35:55 GMT</pubDate><guid isPermaLink="false">New Post: Use within Silverlight Upload App 20100816073555P</guid></item><item><title>New Post: Use within Silverlight Upload App</title><link>http://threesharp.codeplex.com/Thread/View.aspx?ThreadId=48986</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I ended up using the client stack for my requests instead of the browser stack and all my troubles went away.&amp;nbsp; Before I discovered the client stack I tried POST for uploading but in the end found it much easier with the REST/PUT via the client stack.&amp;nbsp; Also since I am using the client stack I can disable read and write stream buffering for uploads and downloads and include a progress indicator.&amp;nbsp; I've been testing uploading and downloading of a 1 GB file without any issues.&lt;/p&gt;&lt;/div&gt;</description><author>m1is</author><pubDate>Mon, 16 Aug 2010 19:32:50 GMT</pubDate><guid isPermaLink="false">New Post: Use within Silverlight Upload App 20100816073250P</guid></item><item><title>New Post: Use within Silverlight Upload App</title><link>http://threesharp.codeplex.com/Thread/View.aspx?ThreadId=48986</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;m1is -&lt;/p&gt;
&lt;p&gt;The problem is that with Silverlight versions prior to Silverlight 4 there was no way to disable write stream buffering.&amp;nbsp; The class library we build that I linked in my previous reply constructs a POST, but it uses Silverlight 4.&amp;nbsp; It also disables buffering and reports progress back to the UI.&amp;nbsp; The problem with using Silverlight 3 and below and not being able to disable the buffering is:&lt;/p&gt;
&lt;p&gt;1.&amp;nbsp; You cannot get progress for your uploads.&lt;/p&gt;
&lt;p&gt;2.&amp;nbsp; The entire file is buffered in browser memory, even if you specify to use ClientHTTP.&lt;/p&gt;
&lt;p&gt;So since the&amp;nbsp;entire file would be buffered, if you were uploading a 1 Gig file, you would consume 1 gig of RAM, which is bad for the client.&amp;nbsp; I put a lot of time into communicating with the Silverlight dev team to get them to allow for unbuffered uploads with Silverlight 4.&amp;nbsp; Our class library is priced at $99, you should at least go read the documentation.&amp;nbsp; It may save you a lot of time and effort.&lt;/p&gt;&lt;/div&gt;</description><author>dhorne41</author><pubDate>Mon, 16 Aug 2010 13:47:32 GMT</pubDate><guid isPermaLink="false">New Post: Use within Silverlight Upload App 20100816014732P</guid></item><item><title>New Post: Use within Silverlight Upload App</title><link>http://threesharp.codeplex.com/Thread/View.aspx?ThreadId=48986</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I've been messing around with this library trying to port it over to Silverlight.&amp;nbsp; From what I've found using the HttpWebRequest class to upload files via the S3 REST interface is not possible because using the PUT verb for the Method property is not supported.&amp;nbsp; I image the best solution would be to derive a new class S3WebRequest from the WebRequest abstract class and go from there.&lt;/p&gt;
&lt;p&gt;I've been able to port it over for downloading files though.&amp;nbsp; Although from what I've found the HttpWebRequest does not support adding custom headers when using the GET verb so I had to use a query string method instead.&amp;nbsp; If anyone wants me to post an example of my code just let me know.&lt;/p&gt;
&lt;p&gt;For my purposes all I need to do is download and would like to figure out a solution to upload.&amp;nbsp; Is there any other way to upload to S3 other than using the REST interface?&lt;/p&gt;&lt;/div&gt;</description><author>m1is</author><pubDate>Mon, 26 Jul 2010 18:17:40 GMT</pubDate><guid isPermaLink="false">New Post: Use within Silverlight Upload App 20100726061740P</guid></item><item><title>New Post: Use within Silverlight Upload App</title><link>http://threesharp.codeplex.com/Thread/View.aspx?ThreadId=48986</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;We just finished created an S3 Upload library.&amp;nbsp; It will upload files up to 5 GB (the Amazon S3 size limit).&amp;nbsp; It uses a stream for uploading so the file isn't cached in memory and it uses an event model so you can report upload progress back to your users.&amp;nbsp; I've also built it to use good security practices and discourage you from storing your AWS Secret Key in your silverlight app and by defualt it uploads to&amp;nbsp;S3 using SSL, but you can&amp;nbsp;disable that via a UseSSL property if you'd like.&amp;nbsp; There's sample code and more information on the site.&lt;/p&gt;
&lt;p&gt;Here's the link if you're interested in downloading the trial.&amp;nbsp; We're also interested in building a base of beta testers for new versions as well which would include some free licensing.&amp;nbsp; If you're interested, check out the trial and fill out the contact form on the site.&lt;br&gt;&lt;br&gt;&lt;a href="http://www.parentelement.com/products/slights3"&gt;http://www.parentelement.com/products/slights3&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>DustinHorne</author><pubDate>Fri, 07 May 2010 18:36:03 GMT</pubDate><guid isPermaLink="false">New Post: Use within Silverlight Upload App 20100507063603P</guid></item><item><title>New Post: wrapper.AddFileObject gives me a Concurrent IO...error</title><link>http://threesharp.codeplex.com/Thread/View.aspx?ThreadId=205025</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Using ThreeSharp.Query I played around with &amp;nbsp;the config options and got it to work. &amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>Hanover</author><pubDate>Mon, 15 Mar 2010 19:19:50 GMT</pubDate><guid isPermaLink="false">New Post: wrapper.AddFileObject gives me a Concurrent IO...error 20100315071950P</guid></item><item><title>New Post: wrapper.AddFileObject gives me a Concurrent IO...error</title><link>http://threesharp.codeplex.com/Thread/View.aspx?ThreadId=205025</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi there,&lt;/p&gt;
&lt;p&gt;I've spent a good hour just trying to upload a file to our S3 server using the wrapper with no luck. &amp;nbsp;When I call &lt;strong&gt;wrapper.AddFileObject(bucket, fileName, sourceFilePath);&lt;/strong&gt;&amp;nbsp;&amp;nbsp;I keep getting &lt;strong&gt;&amp;quot;The stream does not support concurrent IO read or write operations.&amp;quot;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;span style="font-weight:normal"&gt;What am I missing? &amp;nbsp;I've tried to switch this.config.Format = CallingFormat.SUBDOMAIN with no luck...&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Thanks in advance.&lt;/p&gt;&lt;/div&gt;</description><author>Hanover</author><pubDate>Mon, 15 Mar 2010 18:01:28 GMT</pubDate><guid isPermaLink="false">New Post: wrapper.AddFileObject gives me a Concurrent IO...error 20100315060128P</guid></item><item><title>New Post: Web service connection timeout on API</title><link>http://threesharp.codeplex.com/Thread/View.aspx?ThreadId=204520</link><description>&lt;div style="line-height: normal;"&gt;&lt;div style="color:Black;background-color:White"&gt;
&lt;pre&gt;&lt;p&gt;Hi there,&lt;/p&gt;&lt;p&gt;Im using the follow code to connect to Amazon S3 to list contents of a bucket:&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;And I get the following error: &lt;strong&gt;&lt;span style="color:#ff0000"&gt;A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 207.171.191.241:443&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/pre&gt;
&lt;pre&gt;&amp;nbsp;&lt;/pre&gt;
&lt;pre&gt;            ThreeSharpWrapper wrapper = &lt;span style="color:Blue"&gt;new&lt;/span&gt; ThreeSharpWrapper(AccessKeyID, SecretAccessKey);

            Response.Write( wrapper.ListBucket(strBucket));&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&lt;em&gt;When I ping:&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;P:\&amp;gt;ping 207.171.191.241&lt;/p&gt;
&lt;p&gt;Pinging 207.171.191.241 with 32 bytes of data:&lt;/p&gt;
&lt;p&gt;Request timed out.&lt;br&gt;Request timed out.&lt;br&gt;Request timed out.&lt;br&gt;Request timed out.&lt;/p&gt;
&lt;p&gt;Ping statistics for 207.171.191.241:&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Packets: Sent = 4, Received = 0, Lost = 4 (100% loss),&lt;/p&gt;&lt;/div&gt;</description><author>webcloudsolutions</author><pubDate>Wed, 10 Mar 2010 23:51:48 GMT</pubDate><guid isPermaLink="false">New Post: Web service connection timeout on API 20100310115148P</guid></item><item><title>New Post: Where is the latest source code?</title><link>http://threesharp.codeplex.com/Thread/View.aspx?ThreadId=203734</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Howdy,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;To be honest, this is one of the most frustrating open-source projects im currently dealing with.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Where is the latest source? The Source.zip file on the homepage has version 2.0 in the readme.txt, yet apparently the project is at 2.2&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Also, why cant we check the source out of svn?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I need some answers here as there are some serious unresolved timeout issues with unclosed http connections.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I feel like this project should be forked and put up on git.&lt;/p&gt;&lt;/div&gt;</description><author>meboz</author><pubDate>Thu, 04 Mar 2010 05:18:56 GMT</pubDate><guid isPermaLink="false">New Post: Where is the latest source code? 20100304051856A</guid></item><item><title>New Post: How to set Expire Http Header when uploading file</title><link>http://threesharp.codeplex.com/Thread/View.aspx?ThreadId=72981</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Thanks for posting this - most helpful!&lt;/p&gt;
&lt;p&gt;One question - why have you set ACL to public-read-write, rather than just public-read?&lt;/p&gt;&lt;/div&gt;</description><author>stuartlodge</author><pubDate>Sun, 14 Feb 2010 22:08:28 GMT</pubDate><guid isPermaLink="false">New Post: How to set Expire Http Header when uploading file 20100214100828P</guid></item><item><title>New Post: [newbie] Affirma.ThreeSharp.ThreeSharpException: The request signature we calculated does not match the signature you provided. Check your key and signing method..</title><link>http://threesharp.codeplex.com/Thread/View.aspx?ThreadId=41240</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Make sure you wrap your request strings with System.Web.HttpUtility.UrlEncode() to be sure spaces and other things are properly converted for the web!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>Chiliyago</author><pubDate>Sun, 31 Jan 2010 15:50:55 GMT</pubDate><guid isPermaLink="false">New Post: [newbie] Affirma.ThreeSharp.ThreeSharpException: The request signature we calculated does not match the signature you provided. Check your key and signing method.. 20100131035055P</guid></item><item><title>New Post: Medium Trust</title><link>http://threesharp.codeplex.com/Thread/View.aspx?ThreadId=76240</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Does this Library works under Medium Trust Hosting Enviroments?&lt;/p&gt;
&lt;p&gt;I'm working on Hosted File Management which required to store and retrieve files from S3 or any other Cloud Storages, but only issue for me is the API should work under Medium Trust.&lt;/p&gt;
&lt;p&gt;I would appreciate any comments.&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;&lt;/div&gt;</description><author>qorbani</author><pubDate>Wed, 25 Nov 2009 18:54:07 GMT</pubDate><guid isPermaLink="false">New Post: Medium Trust 20091125065407P</guid></item><item><title>New Post: Need help to upload file on S3 with C#</title><link>http://threesharp.codeplex.com/Thread/View.aspx?ThreadId=74645</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; I want to implement the concept of Amazon CDN for my project, where by during Upload Video section, the file will be added on my created Bucket. And in the video detail page, i will be using the formatted URL, i.e. http://s3.amazonaws.com/[bucketname]/[filename]. I am reviewing Affirma.ThreeSharp code for my task, but need your help to get the output. In other words, you can guide me, which functions &amp;amp; their class to be used for my activity.&lt;/p&gt;
&lt;p&gt;If in case, there is any query, from my question, then let me know. Thanks for your support. Waiting for your update.&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Dhaval Gandhi&lt;/p&gt;&lt;/div&gt;</description><author>dhavalg2006</author><pubDate>Tue, 10 Nov 2009 12:50:33 GMT</pubDate><guid isPermaLink="false">New Post: Need help to upload file on S3 with C# 20091110125033P</guid></item></channel></rss>