Roaming Options for User Settings: Listing 1

Adding a Session Property to the Settings Class.

private static LiveConnectSession session;
private const string CloudSettingsFile = "SettingsSample.Settings.txt";
private const string LocalSettingsFile = "__ApplicationSettings";

public static event EventHandler SettingsSavedToCloud;
public static event EventHandler SettingsRetrievedFromCloud;

public static LiveConnectSession Session
{
    get { return session; }
    set
    {
        session = value;
        if (session != null)
        {
            LiveClient = new LiveConnectClient(session);
            LiveClient.GetCompleted += RetrieveFolderListing;
            LiveClient.DownloadCompleted += FileDownloadCompleted;
            LiveClient.UploadCompleted += UploadCompleted;

        }
    }
}
        
private static LiveConnectClient LiveClient { get; set; }

About the Author

Nick Randolph runs Built to Roam, a consulting company that specializes in training, mentoring and assisting other companies build mobile applications. With a heritage in rich client applications for both the desktop and a variety of mobile platforms, Nick currently presents, writes and educates on the Windows Phone platform.

comments powered by Disqus

Featured

  • Kubernetes for Developers

    Microsoft's Dan Wahlin previews his introductory "Kubernetes for Developers" session at Visual Studio Live! San Diego 2026, explaining how developers can get past the Kubernetes learning curve by starting locally, mastering Pods first, and using Services to make containerized applications reliably accessible.

  • VS Code Keeps Eye on Costs in v1.126 Update

    Visual Studio Code 1.126 adds session-level Copilot cost information, continuing Microsoft's recent focus on helping developers monitor and manage usage-based GitHub Copilot billing.

  • Open VSX 1.0.0 Puts Focus on Open Extension Registry for VS Code Ecosystem

    Eclipse Open VSX has reached 1.0.0, highlighting its role as a vendor-neutral registry for VS Code-compatible extensions.

  • Infragistics Puts MCP Toolchain at Center of Ultimate 26.1

    Infragistics Ultimate 26.1 introduces the Ignite UI Enterprise MCP toolchain for AI-assisted app development across Angular, React, Web Components and Blazor.

Subscribe on YouTube