Click here to Skip to main content
15,883,883 members
Articles / Programming Languages / C#

Use Strategy Pattern to Support Cloud Storage

Rate me:
Please Sign up or sign in to vote.
4.64/5 (7 votes)
1 Oct 2012CPOL5 min read 34K   457   19  
In this article, I will explain how to use strategy pattern to add accessing cloud storage support in an on-premise application.
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <appSettings>
    <add key="StorageConnectionString" value="DefaultEndpointsProtocol=https;AccountName=[Account Name];AccountKey=[Account Key]"/>
  </appSettings>
</configuration>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
Senior Software Developer from New Jersey, USA

Have 15+ years experience on enterprise application development with various technologies.

Comments and Discussions