[test] Test SRE of a class with two methods with the same name.
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Contexts / IContextProperty.cs
index efb5b025afd52b5adf82eeeda33f710631e43728..71599c274397f0a7c5f1014b03d7e94e335d9c47 100644 (file)
@@ -1,5 +1,5 @@
 //
-// System.Runtime.Remoting.Contexts.IContextProperty..cs
+// System.Runtime.Remoting.Contexts.IContextProperty.cs
 //
 // Author:
 //   Miguel de Icaza (miguel@ximian.com)
 
 namespace System.Runtime.Remoting.Contexts {
 
+       [System.Runtime.InteropServices.ComVisible (true)]
        public interface IContextProperty {
 
                string Name {
                        get;
                }
 
-               void Freeze (Context ctx);
+               void Freeze (Context newContext);
 
-               bool IsNewContextOK (Context ctx);
+               bool IsNewContextOK (Context newCtx);
        }
 }