Question:Given the following code, which statement would reverse the security restriction? (Choose all that apply.)
Dim e As EventLogPermission = _
New EventLogPermission (PermissionState.Unrestricted)
e.PermitOnly
A e.RevertPermitOnly()
B CodeAccessPermission.RevertPermitOnly()
C e.RevertAll()
D CodeAccessPermission.RevertAll()
E e.RevertDeny()
F CodeAccessPermission.RevertDeny()
+ AnswerB D
+ Report