Hi need a little help understanding the following statement and the logic of what its doing.
AuthenticationProvider auth =
(level & Levels.Authentication) == Levels.Authentication
? GetAuthenticationProviderByName(authentication, authPhrase)
: DefaultAuthenticationProvider.Instance;
I see im making an AuthentcationProvider, but then I dont understand whats happening why is there a comparison there and whats is the question mark doing?
Thanks.