You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Task 5 of the constants exercise is to "Ensure that the developers cannot be tampered with". The intention here is to encourage the student to wrap the developers dictionary in an instance of ReadOnlyDictionary<string, Identity> in the Authenticator.GetDevelopers() method and to return that type or IReadOnlyDictionary<string, Identity> from the method.
This concept is expressed elsewhere as "preventing code circumventing the published or formal API of a class".
The text was updated successfully, but these errors were encountered:
Task 5 of the
constants
exercise is to "Ensure that the developers cannot be tampered with". The intention here is to encourage the student to wrap thedevelopers
dictionary in an instance ofReadOnlyDictionary<string, Identity>
in theAuthenticator.GetDevelopers()
method and to return that type orIReadOnlyDictionary<string, Identity>
from the method.This concept is expressed elsewhere as "preventing code circumventing the published or formal API of a class".
The text was updated successfully, but these errors were encountered: