Not entirely sure what you're trying to achieve, but here's the source code (via Reflector):
Code:
public bool IsOnline
{
get
{
TimeSpan span = new TimeSpan(0, Membership.UserIsOnlineTimeWindow, 0);
DateTime time = DateTime.UtcNow.Subtract(span);
return (this.LastActivityDate.ToUniversalTime() > time);
}
}
Phil