ComAliasNameAttribute.cs 528 B

123456789101112131415161718192021222324252627
  1. //
  2. // System.Runtime.InteropServices.ComAliasNameAttribute.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.Property | AttributeTargets.Field |
  11. AttributeTargets.Parameter | AttributeTargets.ReturnValue)]
  12. public sealed class ComAliasNameAttribute : Attribute
  13. {
  14. string val;
  15. public ComAliasNameAttribute (string alias)
  16. {
  17. val = alias;
  18. }
  19. public string Value {
  20. get { return val; }
  21. }
  22. }
  23. }