PlatformProvider.cs 514 B

1234567891011121314151617
  1. namespace Caliburn.Micro.Core {
  2. /// <summary>
  3. /// Access the current <see cref="IPlatformProvider"/>.
  4. /// </summary>
  5. public static class PlatformProvider {
  6. private static IPlatformProvider current = new DefaultPlatformProvider();
  7. /// <summary>
  8. /// Gets or sets the current <see cref="IPlatformProvider"/>.
  9. /// </summary>
  10. public static IPlatformProvider Current {
  11. get { return current; }
  12. set { current = value; }
  13. }
  14. }
  15. }