ProgIdAttribute.cs 422 B

12345678910111213141516171819202122232425262728
  1. //
  2. // System.Runtime.InteropServices.ProgIdAttribute.cs
  3. //
  4. // Name: Duncan Mak ([email protected])
  5. //
  6. // (C) Ximian, Inc.
  7. //
  8. using System;
  9. namespace System.Runtime.InteropServices {
  10. [AttributeUsage (AttributeTargets.Class)]
  11. public sealed class ProgIdAttribute : Attribute
  12. {
  13. string pid;
  14. public ProgIdAttribute (string progId)
  15. {
  16. pid = progId;
  17. }
  18. public string Value {
  19. get { return pid; }
  20. }
  21. }
  22. }