MonikerSyntaxException.cs 764 B

12345678910111213141516171819202122232425
  1. //-----------------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //-----------------------------------------------------------------------------
  4. namespace System.ServiceModel.ComIntegration
  5. {
  6. using System;
  7. using System.Runtime.InteropServices;
  8. using System.Runtime.InteropServices.ComTypes;
  9. using Microsoft.Win32;
  10. using System.Reflection;
  11. using System.Collections.Generic;
  12. using System.Threading;
  13. using System.Text;
  14. internal class MonikerSyntaxException : COMException
  15. {
  16. internal MonikerSyntaxException (string message) : base (message, HR.MK_E_SYNTAX)
  17. {
  18. }
  19. }
  20. }