I am building a Messenger class library. When logged in, you can access a collection of user objects list via msgrinstance.Users. These users have properties such as LoginName, FriendlyName, DisplayPicture.

If you try to access .Users after logging out, a NotLoggedInException is thrown. And for any user classes that were created while being logged in, if you try to access any of their properties you will again get a NotLoggedInException.

Is this a good way of doing things? Perhaps for the user properties I should be throwing an InvalidOperationException, as the user class is no longer linked with the main Messenger class?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Instead of adding control in any ptoperty I would add a control in a function that requests that information from object, or just clear user collection after app logged off.

Or, if you just want for some reason have users list even after logoff, I would personally suggest to not throw an exception, but return some "invalid" value.

EDIT:

If a client holds just a refence of a User object it can not create problem, if not for GC collection, but it definitely can create a problem at a moment it decides to DO something with it, so call a function, so add error handling there, on your API access.

Hope this helps.

Regards.

link|improve this answer
I am clearing the list on logoff. But someone could still have a reference to the user object. – NoPyGod Jul 16 '11 at 6:50
But are these User objects just dummy holders or have also som functions attached? What I try to say that , by me, it's better to add error handling (exception or whatever) into your API functions. – Tigran Jul 16 '11 at 7:05
I edited my post, have a look. – Tigran Jul 16 '11 at 7:11
feedback

Your Answer

 
or
required, but never shown

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