DispIdAttribute.cs 474 B

12345678910111213141516171819202122232425
  1. //
  2. // System.Runtime.InteropServices.DispIdAttribute.cs
  3. //
  4. // Name: Duncan Mak ([email protected])
  5. //
  6. // (C) Ximian, Inc.
  7. namespace System.Runtime.InteropServices {
  8. [AttributeUsage (AttributeTargets.Method | AttributeTargets.Property |
  9. AttributeTargets.Field | AttributeTargets.Event)]
  10. public sealed class DispIdAttribute : Attribute
  11. {
  12. int id;
  13. public DispIdAttribute (int dispId)
  14. {
  15. id = dispId;
  16. }
  17. public int Value {
  18. get { return id; }
  19. }
  20. }
  21. }