* ComManagedImportUtil.cs: Do not mark instance methods virtual. Fixes
authorGert Driesen <drieseng@users.sourceforge.net>
Wed, 31 May 2006 11:05:17 +0000 (11:05 -0000)
committerGert Driesen <drieseng@users.sourceforge.net>
Wed, 31 May 2006 11:05:17 +0000 (11:05 -0000)
API signature mismatches.
* ClrObjectFactory.cs: Do not mark methods virtual. Fixes API signature
mismatches.
* Publish.cs: Do not mark instance methods virtual. Fixes API signature
mismatches.

svn path=/trunk/mcs/; revision=61312

mcs/class/System.EnterpriseServices/System.EnterpriseServices.Internal/ChangeLog
mcs/class/System.EnterpriseServices/System.EnterpriseServices.Internal/ClrObjectFactory.cs
mcs/class/System.EnterpriseServices/System.EnterpriseServices.Internal/ComManagedImportUtil.cs
mcs/class/System.EnterpriseServices/System.EnterpriseServices.Internal/Publish.cs

index 9c725275407c231e0469038d9fa021c9cb54930a..0fc6a90d5d21b9bf9127c71f255f8fd9e8b24d58 100644 (file)
@@ -1,3 +1,12 @@
+2006-05-31  Gert Driesen <drieseng@users.sourceforge.net>
+
+       * ComManagedImportUtil.cs: Do not mark instance methods virtual. Fixes
+       API signature mismatches.
+       * ClrObjectFactory.cs: Do not mark methods virtual. Fixes API signature
+       mismatches.
+       * Publish.cs: Do not mark instance methods virtual. Fixes API signature
+       mismatches.
+
 2006-05-31  Gert Driesen <drieseng@users.sourceforge.net>
 
        * AppDomainHelper.cs: Set eol-style to native.
index ba166efd7e21d6d86e4bf5467b08eb03d5d45c64..d8ad5a737faf7c79ae9a0e29a12dd8a15e8e8cca 100644 (file)
@@ -41,28 +41,28 @@ namespace System.EnterpriseServices.Internal
                }
 
                [MonoTODO]
-               public virtual object CreateFromAssembly (string AssemblyName, string TypeName, string Mode)
+               public object CreateFromAssembly (string AssemblyName, string TypeName, string Mode)
                {
                        throw new NotImplementedException ();
                }
 
 
                [MonoTODO]
-               public virtual object CreateFromMailbox (string Mailbox, string Mode)
+               public CreateFromMailbox (string Mailbox, string Mode)
                {
                        throw new NotImplementedException ();
                }
 
 
                [MonoTODO]
-               public virtual object CreateFromVroot (string VrootUrl, string Mode)
+               public object CreateFromVroot (string VrootUrl, string Mode)
                {
                        throw new NotImplementedException ();
                }
 
 
                [MonoTODO]
-               public virtual object CreateFromWsdl (string WsdlUrl, string Mode)
+               public object CreateFromWsdl (string WsdlUrl, string Mode)
                {
                        throw new NotImplementedException ();
                }
index d13737829ea3816fdb3a2c9f2065514393bebc31..4b2f07141cbf604d2a820d6a7c2365c0e4883064 100644 (file)
@@ -42,13 +42,13 @@ namespace System.EnterpriseServices.Internal
                }
 
                [MonoTODO]
-               public virtual void GetComponentInfo (string assemblyPath, out string numComponents, out string componentInfo)
+               public void GetComponentInfo (string assemblyPath, out string numComponents, out string componentInfo)
                {
                        throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public virtual void InstallAssembly (string asmpath, string parname, string appname)
+               public void InstallAssembly (string asmpath, string parname, string appname)
                {
                        throw new NotImplementedException ();
                }
index 8df2cafd54d4a901e3fa31f005f5f765d52d08ef..d6920fa6701793f1861ed015dc10326cd6afd341 100644 (file)
@@ -42,43 +42,43 @@ namespace System.EnterpriseServices.Internal
                }
 
                [MonoTODO]
-               public virtual void CreateMailBox (string RootMailServer, string MailBox, out string SmtpName, out string Domain, out string PhysicalPath, out string Error)
+               public void CreateMailBox (string RootMailServer, string MailBox, out string SmtpName, out string Domain, out string PhysicalPath, out string Error)
                {
                        throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public virtual void CreateVirtualRoot (string Operation, string FullUrl, out string BaseUrl, out string VirtualRoot, out string PhysicalPath, out string Error)
+               public void CreateVirtualRoot (string Operation, string FullUrl, out string BaseUrl, out string VirtualRoot, out string PhysicalPath, out string Error)
                {
                        throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public virtual void DeleteMailBox (string RootMailServer, string MailBox, out string Error)
+               public void DeleteMailBox (string RootMailServer, string MailBox, out string Error)
                {
                        throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public virtual void DeleteVirtualRoot (string RootWebServer, string FullUrl, out string Error)
+               public void DeleteVirtualRoot (string RootWebServer, string FullUrl, out string Error)
                {
                        throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public virtual void GacInstall (string AssemblyPath)
+               public void GacInstall (string AssemblyPath)
                {
                        throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public virtual void GacRemove (string AssemblyPath)
+               public void GacRemove (string AssemblyPath)
                {
                        throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public virtual void GetAssemblyNameForCache (string TypeLibPath, out string CachePath)
+               public void GetAssemblyNameForCache (string TypeLibPath, out string CachePath)
                {
                        throw new NotImplementedException ();
                }
@@ -90,7 +90,7 @@ namespace System.EnterpriseServices.Internal
                }
 
                [MonoTODO]
-               public virtual string GetTypeNameFromProgId (string AssemblyPath, string ProgId)
+               public string GetTypeNameFromProgId (string AssemblyPath, string ProgId)
                {
                        throw new NotImplementedException ();
                }
@@ -102,25 +102,25 @@ namespace System.EnterpriseServices.Internal
                }
 
                [MonoTODO]
-               public virtual void ProcessClientTlb (string ProgId, string SrcTlbPath, string PhysicalPath, string VRoot, string BaseUrl, string Mode, string Transport, out string AssemblyName, out string TypeName, out string Error)
+               public void ProcessClientTlb (string ProgId, string SrcTlbPath, string PhysicalPath, string VRoot, string BaseUrl, string Mode, string Transport, out string AssemblyName, out string TypeName, out string Error)
                {
                        throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public virtual void ProcessServerTlb (string ProgId, string SrcTlbPath, string PhysicalPath, string Operation, out string strAssemblyName, out string TypeName, out string Error)
+               public void ProcessServerTlb (string ProgId, string SrcTlbPath, string PhysicalPath, string Operation, out string strAssemblyName, out string TypeName, out string Error)
                {
                        throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public virtual void RegisterAssembly (string AssemblyPath)
+               public void RegisterAssembly (string AssemblyPath)
                {
                        throw new NotImplementedException ();
                }
 
                [MonoTODO]
-               public virtual void UnRegisterAssembly (string AssemblyPath)
+               public void UnRegisterAssembly (string AssemblyPath)
                {
                        throw new NotImplementedException ();
                }