I'm aware that readonly collection prevents adding/removing from a list but why doesn't it prevent the setting of properties of objects in the collection.

 System.Collections.ObjectModel.ReadOnlyCollection<PersonPhoneNumber> ReadOnlyPhoneNumbers = new System.Collections.ObjectModel.ReadOnlyCollection<PersonPhoneNumber>(_PhoneNumbers);
            ReadOnlyPhoneNumbers[0].Number = "01111111111111";

For the purpose of this question assume the _PhoneNumbers is a List and it contains at least one instance of the PersonPhoneNumber class.

How do expose a collection of objects and make the objects read only? The origins of this problem stem from having to expose a private collection in a WCF data contract but i don't want the collection to be accessible.

I want to use:

  Person.Mobile = "011111111111111";

Instead of:

Person.PhoneNumbers.Add(New PersonPhoneNumber{Number= "01111111111111", Type=Mobile});
link|improve this question

62% accept rate
feedback

6 Answers

You cannot make the objects readonly. That would require altering the types. If you really need to provide a list of readonly-objects, you will need to create some sort of immutable wrapper type for each type that you want to expose (or make your types immutable from the start). Of course, this will be a separate type, if you need them to interoperate it will be rather complicated...

link|improve this answer
feedback

How could it prevent that? How would you try to build such a thing in C#? It could potentially copy anything that was returned from the indexer (etc) if it supported cloning - but then the object would need to perform the cloning. What would you expect to happen with the code you've just given? Should it throw an exception? If so, that's making a change to the PersonPhoneNumber class itself.

It sounds like you should basically change your PersonPhoneNumber class to be immutable. If you need a way of building it in a mutable fashion, you can create a builder type which knows how to create a PersonPhoneNumber - for example:

var ppn = new PersonPhoneNumber.Builder { /* set properties here }.Build();

For reasonably simple types it's easier to just write an appropriate constructor though.

link|improve this answer
Ideally, i would like to throw an exception if this property is accessed by anything other than the serialization process. I would like to implement a readonly property but can't do so because the serialization process requires a Get and a Set Method for each property. – Al P Mar 1 '11 at 16:00
feedback

The problem is making the objects read only as they go in - in order to make those objects read only you'll need to wrap them in some kind of proxy that doesn't allow values to be set.

Castle's dynamic proxy may allow you to wrap the objects in a ReadOnlyProxy of your own implementation. Then your add method would have to wrap everything in a ReadOnlyProxy as they went into the collection.

Not nice...

link|improve this answer
feedback

What you desire is not a question of the collection. The collection holds a reference to your items and you get this items by accessing the collection.
You can try to clone your objects before inserting. This does not prevent them from beeing changed but the original object will be preserved. Otherwise, you have to write a read-only wrapper or choose another construction for your objects.

link|improve this answer
feedback

You might want to look at this article. http://en.csharp-online.net/CSharp_Generics_Recipes%E2%80%94Making_Read-Only_Collections_the_Generic_Way

I think what you want is to keep the phonenumbers list a true private data member but then expose access to it via setters and getters on the person object for the various types of phone numbers. This would work just fine if the person can only have one of each type... otherwise you would have to change it to be a method. like .AddMobile("011111")

link|improve this answer
Its not ideal but i was considering using a operation/method instead. – Al P Mar 1 '11 at 16:02
feedback

How about this:

  1. make an interface of your PersonPhoneNumber that only exposes read only properties (without setters)
  2. instead of a collection of PersonPhoneNumber, you create a read only collection of IPersonPhoneNumber but putting your PersonPhoneNumber items in it

Of course this doesn't prevent code from casting your items to PersonPhoneNumber but it does prevent accidental modifying of properties on items

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.