PageRenderTime 35ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

/V4/Quickstarts/Modularity/Silverlight/ModularityWithUnity/ModularityWithUnity.Silverlight/ModuleInitializationStatus.cs

#
C# | 49 lines | 11 code | 4 blank | 34 comment | 0 complexity | 14132e78c45016846e2ee6ac166e9e87 MD5 | raw file
  1. //===================================================================================
  2. // Microsoft patterns & practices
  3. // Composite Application Guidance for Windows Presentation Foundation and Silverlight
  4. //===================================================================================
  5. // Copyright (c) Microsoft Corporation. All rights reserved.
  6. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY
  7. // OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT
  8. // LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  9. // FITNESS FOR A PARTICULAR PURPOSE.
  10. //===================================================================================
  11. // The example companies, organizations, products, domain names,
  12. // e-mail addresses, logos, people, places, and events depicted
  13. // herein are fictitious. No association with any real company,
  14. // organization, product, domain name, email address, logo, person,
  15. // places, or events is intended or should be inferred.
  16. //===================================================================================
  17. namespace ModularityWithUnity.Silverlight
  18. {
  19. /// <summary>
  20. /// The current status of the module used by ModuleTrackingState.
  21. /// </summary>
  22. public enum ModuleInitializationStatus
  23. {
  24. /// <summary>
  25. /// The module is in its initial state.
  26. /// </summary>
  27. NotStarted,
  28. /// <summary>
  29. /// The module is in the process of being downloaded.
  30. /// </summary>
  31. Downloading,
  32. /// <summary>
  33. /// The module has been downloaded.
  34. /// </summary>
  35. Downloaded,
  36. /// <summary>
  37. /// The module has been constructed.
  38. /// </summary>
  39. Constructed,
  40. /// <summary>
  41. /// The module has been initialized.
  42. /// </summary>
  43. Initialized,
  44. }
  45. }