MetaData.cs 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. //
  2. // System.Runtime.Remoting.MetadataServices.MetaData
  3. //
  4. // Authors:
  5. // Martin Willemoes Hansen ([email protected])
  6. //
  7. // (C) 2003 Martin Willemoes Hansen
  8. //
  9. using System.Collections;
  10. using System.IO;
  11. namespace System.Runtime.Remoting.MetadataServices
  12. {
  13. public class MetaData
  14. {
  15. [MonoTODO]
  16. public MetaData()
  17. {
  18. }
  19. [MonoTODO]
  20. public static void ConvertCodeSourceFileToAssemblyFile (
  21. string codePath,
  22. string assemblyPath,
  23. string strongNameFilename)
  24. {
  25. throw new NotImplementedException();
  26. }
  27. [MonoTODO]
  28. public static void ConvertCodeSourceStreamToAssemblyFile (
  29. ArrayList outCodeStreamList,
  30. string assemblyPath,
  31. string strongNameFilename)
  32. {
  33. throw new NotImplementedException();
  34. }
  35. [MonoTODO]
  36. public static void ConvertSchemaStreamToCodeSourceStream (
  37. bool b,
  38. string str,
  39. Stream stream,
  40. ArrayList list)
  41. {
  42. throw new NotImplementedException();
  43. }
  44. [MonoTODO]
  45. public static void ConvertSchemaStreamToCodeSourceStream (
  46. bool b,
  47. string str,
  48. Stream stream,
  49. ArrayList list,
  50. string str2)
  51. {
  52. throw new NotImplementedException();
  53. }
  54. [MonoTODO]
  55. public static void ConvertSchemaStreamToCodeSourceStream (
  56. bool b,
  57. string str,
  58. Stream stream,
  59. ArrayList list,
  60. string str2,
  61. string str3)
  62. {
  63. throw new NotImplementedException();
  64. }
  65. [MonoTODO]
  66. public static void ConvertTypesToSchemaToFile (
  67. ServiceType[] servicetype,
  68. SdlType sdltype,
  69. string str)
  70. {
  71. throw new NotImplementedException();
  72. }
  73. [MonoTODO]
  74. public static void ConvertTypesToSchemaToFile (
  75. Type[] type,
  76. SdlType sdltype,
  77. string str)
  78. {
  79. throw new NotImplementedException();
  80. }
  81. [MonoTODO]
  82. public static void ConvertTypesToSchemaToStream (
  83. ServiceType[] servicetype,
  84. SdlType sdltype,
  85. Stream stream)
  86. {
  87. throw new NotImplementedException();
  88. }
  89. [MonoTODO]
  90. public static void ConvertTypesToSchemaToStream (
  91. Type[] type,
  92. SdlType sdltype,
  93. Stream stream)
  94. {
  95. throw new NotImplementedException();
  96. }
  97. [MonoTODO]
  98. public static void RetrieveSchemaFromUrlToFile (string url,
  99. string path)
  100. {
  101. throw new NotImplementedException();
  102. }
  103. [MonoTODO]
  104. public static void RetrieveSchemaFromUrlToStream (
  105. string url,
  106. Stream outputStream)
  107. {
  108. throw new NotImplementedException();
  109. }
  110. [MonoTODO]
  111. public static void SaveStreamToFile (Stream inputStream,
  112. string path)
  113. {
  114. throw new NotImplementedException();
  115. }
  116. [MonoTODO]
  117. ~MetaData()
  118. {
  119. }
  120. }
  121. }