SIGN UP MEMBER LOGIN:    
ARTICLE

Isolated storage space in Silverlight

Posted by Meetu Choudhary Articles | Silverlight with C# August 26, 2009
Isolated storage is a mechanism which, provide data storage isolation and safety by defining standardized ways of associating code with saved data. Standardization provides some more benefits as well.
Reader Level:
Download Files:
 

Definition: Isolated storage is a mechanism which, provide data storage isolation and safety by defining standardized ways of associating code with saved data. Standardization provides some more benefits as well. Uses of tools from designing, reconfiguration storage, make security policies apart from this remove unused data all are the tasks of Administrators Using isolated storage there no need to write unique paths in the file system, so, hard-coded things are immaterial. With this all is controlled by computer's security policy. The uses of this is appreciable in web applications where user/client must have to use some cautions while running these applications. Security policy doe not allow to access the file system using I/O mechanism, by default all is granted to access isolated storage.

For more information on Isolated Storage Visit here

How to increase the space of the isolated Storage of the application


Steps to test the current space for the application

  1. Run any Silverlight Application Right click on it it will show you the silverlight button. Click on it
     
  2. Now the Silverlight properties Dialog will appear Now select the Application Storage Tab It will show you the Application storage for all the silverlight application on the system

    Meetu
     
  3. Create an application with the name "IsolatedStorageApp". You can name it as per your choice I will be using this in my example Application.

    Meetu

    Add New silverlight control and name it as "IncreaseIsolatedStorage.xaml"
     
  4. Right-click on the IsolatedStorageApp in the solution explorer 
     
    1. Choose Add
    2. New Item
    3. Silverlight User Control. In the name box rename it to IncreaseIsolatedStorage
       
    Meetu
     
  5. For our purpose we are only taking three textblocks to display Space Used, Space Available, Current Quota and the textbox for the New Space request. Add the following lines in the .xaml file

    <Canvas Canvas.Left="10" Canvas.Top="10">
        <
    TextBlock Canvas.Left="10" x:Name="SpacedUsed" >Current Spaced Used=</TextBlock>
        <
    TextBlock Canvas.Left="10" x:Name="SpaceAvaiable" Canvas.Top="20">Current Space Available=</TextBlock>
        <TextBlock Canvas.Left="10" x:Name="CurrentQuota" Canvas.Top="40">Current Quota=</TextBlock>
        <
    TextBlock Canvas.Left="10" x:Name="NewSpace" Canvas.Top="70">New space (in bytes) to request=</TextBlock>
        <
    TextBox Canvas.Left="255" Canvas.Top="70" Width="100" x:Name="SpaceRequest"></TextBox>
        <
    TextBlock Canvas.Left="365" Canvas.Top="70" Width="60">(1048576 = 1 MB)</TextBlock>
        <
    Button Canvas.Left="10" Content="Increase Storage" Canvas.Top="100" Width="100" Height="50" Click="Button_Click"></Button>
        <
    TextBlock Canvas.Left="10" Canvas.Top="160" x:Name="Result"></TextBlock>
    </
    Canvas>


    Now our page will look like:

     Meetu
     
  6. To set the values of the three TextBlocks lets create a function GetStorageData and call it in the constructor.

    private
    void GetStorageData()
    {
        //creating an object for the IsolatedStorageFile
        using (IsolatedStorageFile MyAppStore = solatedStorageFile.GetUserStoreForApplication())
        {
            //calculating the space used

            SpacedUsed.Text = "Current Spaced Used = " + (MyAppStore.Quota - MyAppStore.AvailableFreeSpace).ToString() + " bytes";
            //getting the AvailableFreeSpace
            SpaceAvaiable.Text = "Current Space Available=" + MyAppStore.AvailableFreeSpace.ToString() + " bytes";
            //getting the Current Quota
    CurrentQuota.Text = "Current Quota=" + MyAppStore.Quota.ToString() + " bytes";
        }
    }


    Here we will be missing a namespace "System.IO.IsolatedStorage" so include it.
     
  7. Now the function to increase the quota

    ///
    <summary>
    ///
    Increases the Isolated Storage Space of the current Application
    ///
    </summary> ///
    <param name="spaceRequest">
    Total Space Requested to increase</param>
    private
    void IncreaseStorage(long spaceRequest)
    {
        //creating an object for the IsolatedStorageFile for current Application
        using (IsolatedStorageFile MyAppStore = solatedStorageFile.GetUserStoreForApplication())
        {
            //Calculating the new space
    long newSpace = MyAppStore.Quota + spaceRequest;
            try
           
    {
                //displays a message box for the increase request.
                //if accepted by the user then displays the result as quota increased
                //else unsuccessful.

                if
    (true == MyAppStore.IncreaseQuotaTo(newSpace))
                {
                    Result.Text = "Quota successfully increased.";
                }
                else

                {
                    Result.Text = "Quota increase was unsuccessfull.";
                }
            }
            catch
    (Exception e)
            {
                Result.Text = "An error occured: " + e.Message;
            }
            //recalculate the static

            GetStorageData();
        }
    }

    Handling the button event


    private
    void Button_Click(object sender, RoutedEventArgs e)
    {
        try
       
    {
            //taking the space request in the long variable
            long spaceRequest = Convert.ToInt64(SpaceRequest.Text);
            //calling the function to increase the space

            IncreaseStorage(spaceRequest);
            }
        catch

        {
            Result.Text = "Bad Data Entered by the user";
        }
    }
Run the application and click on the button after filling the textbox with the desired space to increase. A dialog box will appear for the confirmation, click yes to see the results. 

 Meetu
 

Login to add your contents and source code to this article
share this article :
post comment
 
6 Months Free & No Setup Fees ASP.NET Hosting!
Become a Sponsor
PREMIUM SPONSORS
  • ceTE software specializes in components for dynamic PDF generation and manipulation. The DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and new content to existing PDF documents from within your applications. Visit DynamicPDF here
    Finally – a virtual platform that delivers next-generation Windows Server 2008 Hyper-V virtualization technology from a managed hosting partner you can truly depend on. Visit www.maximumasp.com/max for a FREE 30 day trial. Hurry offer ends soon. Climb aboard the MaxV platform and take advantage of High Availability, Intelligent Monitoring, Recurrent Backups, and Scalability – with no hassle or hidden fees. As a managed hosting partner focused solely on Microsoft technologies since 2000, MaximumASP is uniquely qualified to provide the superior support that our business is built on. Unparalleled expertise with Microsoft technologies lead to working directly with Microsoft as first to offer IIS 7 and SQL 2008 betas in a hosted environment; partnering in the Go Live Program for Hyper-V; and product co-launches built on WS 2008 with Hyper-V technology.
Become a Sponsor