// // System.Runtime.Remoting.MetadataServices.MetaData // // Authors: // Martin Willemoes Hansen (mwh@sysrq.dk) // // (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() { } } }