protected override bool Execute(CodeActivityContext context) { bool Res = false; try { Res = (ARM_Service.Login(UserName.Get(context), Password.Get(context)) != null); } catch (Exception ex) { if (!HideException.Get(context)) { throw ex; } } return(Res); }