2
0

ISoapServerVRoot.cs 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. // System.EnterpriseServices.Internal.ISoapServerVRoot.cs
  2. //
  3. // Author: Mike Kestner ([email protected])
  4. //
  5. // Copyright (C) 2004 Novell, Inc.
  6. //
  7. //
  8. // Permission is hereby granted, free of charge, to any person obtaining
  9. // a copy of this software and associated documentation files (the
  10. // "Software"), to deal in the Software without restriction, including
  11. // without limitation the rights to use, copy, modify, merge, publish,
  12. // distribute, sublicense, and/or sell copies of the Software, and to
  13. // permit persons to whom the Software is furnished to do so, subject to
  14. // the following conditions:
  15. //
  16. // The above copyright notice and this permission notice shall be
  17. // included in all copies or substantial portions of the Software.
  18. //
  19. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  20. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  21. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  22. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  23. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  24. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  25. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  26. //
  27. using System;
  28. using System.Runtime.InteropServices;
  29. namespace System.EnterpriseServices.Internal {
  30. #if NET_1_1
  31. [Guid("A31B6577-71D2-4344-AEDF-ADC1B0DC5347")]
  32. public interface ISoapServerVRoot {
  33. [DispId(1)]
  34. void CreateVirtualRootEx (
  35. [MarshalAs(UnmanagedType.BStr)] string rootWebServer,
  36. [MarshalAs(UnmanagedType.BStr)] string inBaseUrl,
  37. [MarshalAs(UnmanagedType.BStr)] string inVirtualRoot,
  38. [MarshalAs(UnmanagedType.BStr)] string homePage,
  39. [MarshalAs(UnmanagedType.BStr)] string discoFile,
  40. [MarshalAs(UnmanagedType.BStr)] string secureSockets,
  41. [MarshalAs(UnmanagedType.BStr)] string authentication,
  42. [MarshalAs(UnmanagedType.BStr)] string operation,
  43. [MarshalAs(UnmanagedType.BStr)] out string baseUrl,
  44. [MarshalAs(UnmanagedType.BStr)] out string virtualRoot,
  45. [MarshalAs(UnmanagedType.BStr)] out string physicalPath);
  46. [DispId(2)]
  47. void DeleteVirtualRootEx (
  48. [MarshalAs(UnmanagedType.BStr)] string rootWebServer,
  49. [MarshalAs(UnmanagedType.BStr)] string baseUrl,
  50. [MarshalAs(UnmanagedType.BStr)] string virtualRoot);
  51. [DispId(3)]
  52. void GetVirtualRootStatus (
  53. [MarshalAs(UnmanagedType.BStr)] string rootWebServer,
  54. [MarshalAs(UnmanagedType.BStr)] string inBaseUrl,
  55. [MarshalAs(UnmanagedType.BStr)] string inVirtualRoot,
  56. [MarshalAs(UnmanagedType.BStr)] out string exists,
  57. [MarshalAs(UnmanagedType.BStr)] out string secureSockets,
  58. [MarshalAs(UnmanagedType.BStr)] out string windowsAuth,
  59. [MarshalAs(UnmanagedType.BStr)] out string anonymous,
  60. [MarshalAs(UnmanagedType.BStr)] out string homePage,
  61. [MarshalAs(UnmanagedType.BStr)] out string discoFile,
  62. [MarshalAs(UnmanagedType.BStr)] out string physicalPath,
  63. [MarshalAs(UnmanagedType.BStr)] out string baseUrl,
  64. [MarshalAs(UnmanagedType.BStr)] out string virtualRoot);
  65. }
  66. #endif
  67. }