Skip to content

Instantly share code, notes, and snippets.

@axemastabloggists
Last active August 14, 2018 21:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save axemastabloggists/78a7582ea637e379d57c0044a3108bdf to your computer and use it in GitHub Desktop.
Save axemastabloggists/78a7582ea637e379d57c0044a3108bdf to your computer and use it in GitHub Desktop.
Data Persistence Properties Blog - Gist 3
/// <summary>
/// Gets or Sets the Server Redirect URL
/// </summary>
public string RedirectUrl
{
get
{
return _appSettings.GetValueOrDefault("redirecturl", "www.alexduffell.wordpress.com/api");
}
set
{
_appSettings.AddOrUpdateValue("redirecturl", value);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment