ActivatorLevel.cs 332 B

12345678910111213141516171819
  1. //
  2. // System.Runtime.Remoting.Contexts.ActivatorLevel..cs
  3. //
  4. // Author:
  5. // Miguel de Icaza ([email protected])
  6. //
  7. // (C) Ximian, Inc. http://www.ximian.com
  8. //
  9. namespace System.Runtime.Remoting.Activation {
  10. public enum ActivatorLevel {
  11. Construction = 4,
  12. Context = 8,
  13. AppDomain = 12,
  14. Process = 16,
  15. Machine = 20,
  16. }
  17. }