After restricting Setter scope and then applying an interface, scope is disregarded! - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T08:02:03Z http://stackoverflow.com/feeds/question/517049 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/517049/after-restricting-setter-scope-and-then-applying-an-interface-scope-is-disregard 0 After restricting Setter scope and then applying an interface, scope is disregarded! Brian MacKay 2009-02-05T17:57:24Z 2009-02-06T18:33:47Z <p>If I set a Friend-level scope on a setter, like this...</p> <pre><code>Public Class MyClass Public Property IsDirty() As Boolean Get Return _isDirty End Get Friend Set(ByVal trueFalse As Boolean) _isDirty = trueFalse End Set End Property End Class </code></pre> <p>...And then call it from another project, it works correctly. I can't do something like MyClass.IsDirty = True. </p> <p>Great! That's exactly what I want.</p> <p>But now if I define an interface, and I will indeed have to do that:</p> <pre><code>Public Interface IMyClass Property IsDirty() As Boolean End Interface </code></pre> <p>I can do something like:</p> <pre><code>Dim MyInstance as IMyClass= GetSomeInstanceOfMyClass() MyInstance.IsDirty=True </code></pre> <p>...And, bizarrely, <em>it runs!</em> No exceptions are thrown, and the inner variable is set to True. It ignores the Friend scope completely!</p> <p>That's hideous. What am I missing??</p> <p><strong>Note:</strong> I need this because I'm designing an API, and I want the inner API to be able to set IsDirty, but end-developers shouldn't be able to get into that. Currently I am wrapping the whole class in a facade to get this functionality, but the facade should be unecessary.</p> http://stackoverflow.com/questions/517049/after-restricting-setter-scope-and-then-applying-an-interface-scope-is-disregard/517627#517627 1 Answer by chyne for After restricting Setter scope and then applying an interface, scope is disregarded! chyne 2009-02-05T19:52:25Z 2009-02-05T19:52:25Z <p>What you are missing is the concept of inplicit and explicit interface implementation. See <a href="http://stackoverflow.com/questions/143405/c-interfaces-implicit-and-explicit-implementation">the answer to this question for more details</a>.</p> <p>And if you think it's hideous with a Friend setter, try setting it to Private and watch it still be accessible via the interface!</p> http://stackoverflow.com/questions/517049/after-restricting-setter-scope-and-then-applying-an-interface-scope-is-disregard/517706#517706 1 Answer by nobugz for After restricting Setter scope and then applying an interface, scope is disregarded! nobugz 2009-02-05T20:14:32Z 2009-02-06T18:33:47Z <p>Interface methods always have public accessibility. You can't fix that by explicit interface implementation, that will only hide the class method. Simply casting the object to the interface type gives unfettered access again.</p> <p>EDIT: actually, the problem is easy to solve. Just declare the property ReadOnly in the interface declaration :)</p> <p>For example:</p> <pre><code>Public Interface IMyClass ReadOnly Property IsDirty() As Boolean End Interface Public Class Test Implements IMyClass Private mIsDirty As Boolean Private ReadOnly Property IsDirtyImpl() As Boolean Implements IMyClass.IsDirty Get Return mIsDirty End Get End Property Public Property IsDirty() As Boolean Get Return mIsDirty End Get Friend Set(ByVal value As Boolean) mIsDirty = value End Set End Property End Class </code></pre>