| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- //
- // System.Runtime.Remoting.MetadataServices.MetaData
- //
- // Authors:
- // Martin Willemoes Hansen ([email protected])
- //
- // (C) 2003 Martin Willemoes Hansen
- //
- using System.Collections;
- using System.IO;
- namespace System.Runtime.Remoting.MetadataServices
- {
- public class MetaData
- {
- [MonoTODO]
- public MetaData()
- {
- }
- [MonoTODO]
- public static void ConvertCodeSourceFileToAssemblyFile (
- string codePath,
- string assemblyPath,
- string strongNameFilename)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- public static void ConvertCodeSourceStreamToAssemblyFile (
- ArrayList outCodeStreamList,
- string assemblyPath,
- string strongNameFilename)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- public static void ConvertSchemaStreamToCodeSourceStream (
- bool b,
- string str,
- Stream stream,
- ArrayList list)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- public static void ConvertSchemaStreamToCodeSourceStream (
- bool b,
- string str,
- Stream stream,
- ArrayList list,
- string str2)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- public static void ConvertSchemaStreamToCodeSourceStream (
- bool b,
- string str,
- Stream stream,
- ArrayList list,
- string str2,
- string str3)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- public static void ConvertTypesToSchemaToFile (
- ServiceType[] servicetype,
- SdlType sdltype,
- string str)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- public static void ConvertTypesToSchemaToFile (
- Type[] type,
- SdlType sdltype,
- string str)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- public static void ConvertTypesToSchemaToStream (
- ServiceType[] servicetype,
- SdlType sdltype,
- Stream stream)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- public static void ConvertTypesToSchemaToStream (
- Type[] type,
- SdlType sdltype,
- Stream stream)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- public static void RetrieveSchemaFromUrlToFile (string url,
- string path)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- public static void RetrieveSchemaFromUrlToStream (
- string url,
- Stream outputStream)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- public static void SaveStreamToFile (Stream inputStream,
- string path)
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- ~MetaData()
- {
- }
- }
- }
|