End Google Ads 201810 - BS.net 01 --> How exactly do I set s user to be disabled? I can get the value.. but how do I set it:

bool? AuthenticablePrincipal.Enabled
Gets or set a Nullable boolean vlaue that speecifies whether this account can authenticate...

but how do I set it to false?


UserPrincipal getUser = UserPrincipal.FindByIdentity(context, userName);
getUser.Enabled = false;


Does not work.