PolicyLevel.cs 696 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. // System.Security.Policy.PolicyLevel
  2. //
  3. // Nick Drochak ([email protected])
  4. //
  5. // (C) 2001 Nick Drochak
  6. using System.Collections; // for IList
  7. namespace System.Security.Policy
  8. {
  9. [MonoTODO]
  10. [Serializable]
  11. public sealed class PolicyLevel
  12. {
  13. internal PolicyLevel () {}
  14. public IList FullTrustAssemblies
  15. {
  16. get
  17. {
  18. return (IList)null;
  19. }
  20. }
  21. public string Label
  22. {
  23. get
  24. {
  25. return "";
  26. }
  27. }
  28. public IList NamedPermissionSets
  29. {
  30. get
  31. {
  32. return (IList)null;
  33. }
  34. }
  35. public CodeGroup RootCodeGroup
  36. {
  37. get
  38. {
  39. return (CodeGroup)null;
  40. }
  41. set
  42. {
  43. }
  44. }
  45. public string StoreLocation
  46. {
  47. get
  48. {
  49. return "";
  50. }
  51. }
  52. }
  53. }